PHP - hash_copy() 函数



定义和用法

hash_copy() 函数用于复制由 hash_init() 生成的哈希上下文。

语法

hash_copy ( HashContext $context ) : HashContext

参数

序号 参数及描述
1

HashContext context

使用 hash_init() 获取的哈希上下文。

返回值

hash_copy() 函数返回哈希上下文的副本。该哈希上下文可与其他哈希函数一起使用,例如 hash_update()、hash_update_stream()、hash_update_file() 和 hash_final()。

PHP 版本

此函数可在 PHP 5.3.0 以上版本中使用。

示例 1

hash_copy() 和 hash_init() 的工作原理 -

<?php
   $hash_context = hash_init("md5");
   hash_update($hash_context, "Welcome To Tutorialspoint");
   $hash_copy= hash_copy($hash_context);
   echo hash_final($hash_context);
   echo "<br/>";
   hash_update($hash_copy,  "Welcome To Tutorialspoint");
   echo hash_final($hash_copy);
?>

输出

这将产生以下结果 -

6211420491a571f89f970683221d4480<br/>d0b25da996bf035057aba79082c53b30

示例 2

hash_copy() 与 sha256 的工作原理 -

<?php
   $hash_context = hash_init("sha256");
   hash_update($hash_context, "Welcome To Tutorialspoint");
   $hash_copy = hash_copy($hash_context);
   hash_update($hash_copy,  "Welcome To Tutorialspoint");
   echo hash_final($hash_copy);
?>

输出

这将产生以下结果 -

5fc2dcb68e98dee511cd5bc72667a1acaaf769c737f094672ab9072e5543f587
php_function_reference.htm
广告