hash_copy()函數是PHP中的內置函數,用於獲取哈希上下文的副本。
用法:
hash_copy( $context )
參數:該函數接受單個參數$context,該參數用於指定hash_init()函數返回的哈希上下文。
返回值:此函數返回哈希上下文的副本。
以下示例程序旨在說明PHP中的hash_copy()函數:
程序1:
<?php
// Initialize an incremental
// hashing context
$context = hash_init("sha1");
// Copy context using hash_copy function
$cp_context = hash_copy($context);
// Finalize an incremental hash
// and return resulting digest
echo hash_final($context), "\n";
// Update context
hash_update($cp_context, "GFG");
// Print finalize context
echo hash_final($cp_context), "\n";
?>
輸出:
da39a3ee5e6b4b0d3255bfef95601890afd80709 adb536466977c49bebb6317891bffb77dc6e5823
程序2:
<?php
// Initialize an incremental
// hashing context
$context = hash_init("md5");
// Copy context using hash_copy function
$cp_context = hash_copy($context);
// Finalize an incremental hash
// and return resulting digest
echo hash_final($context), "\n";
// Update context
hash_update($cp_context, "GFG");
// Print finalize context
echo hash_final($cp_context), "\n";
?>
輸出:
d41d8cd98f00b204e9800998ecf8427e eadc14b80cd2f247f467eb6c7f45fa9b
參考: http://php.net/manual/en/function.hash-copy.php
相關用法
- p5.js sq()用法及代碼示例
- d3.js d3.map.has()用法及代碼示例
- PHP next()用法及代碼示例
- p5.js day()用法及代碼示例
- p5.js pow()用法及代碼示例
- CSS var()用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- PHP pow( )用法及代碼示例
- PHP pi( )用法及代碼示例
- PHP Ds\Map get()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- p5.js str()用法及代碼示例
注:本文由純淨天空篩選整理自R_Raj大神的英文原創作品 PHP | hash_copy() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。