當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。