当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP hash_copy()用法及代码示例


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



相关用法


注:本文由纯净天空筛选整理自R_Raj大神的英文原创作品 PHP | hash_copy() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。