©
本文档使用 PHP中文网手册 发布
(PHP 5 >= 5.3.0)
hash_copy — 拷贝哈希运算上下文
$context
)
context
由 hash_init() 函数返回的哈希运算上下文。
返回哈希运算上下文资源的一个复本。
Example #1 hash_copy() 例程
<?php
$context = hash_init ( "md5" );
hash_update ( $context , "data" );
$copy_context = hash_copy ( $context );
echo hash_final ( $context ), "\n" ;
hash_update ( $copy_context , "data" );
echo hash_final ( $copy_context ), "\n" ;
?>
以上例程会输出:
8d777f385d3dfec8815d20f7496026dc 511ae0b1c13f95e5f08f1a0dd3da3d93