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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。