hash_update_stream
(PHP 5 >= 5.1.2, PHP 7, PHP 8, PECL hash >= 1.1)
hash_update_stream — 從打開的流向活躍的雜湊運算上下文中填充數據
說明
hash_update_stream(HashContext
$context
, resource $handle
, int $length
= -1): int參數
-
context
-
由 hash_init() 函式返回的雜湊運算上下文。
-
handle
-
建立流的函式返回的打開的檔案控制代碼。
-
length
-
要從
handle
向活躍的雜湊運算上下文中拷貝 的最大字元數。
返回值
從 handle
向雜湊運算上下文中實際填充的位元組數量。
更新日誌
版本 | 說明 |
---|---|
7.2.0 | 接收參數從資源型別修改爲 HashContext 對像型別。 |
範例
示例 #1 hash_update_stream() 例程
<?php
$fp = tmpfile();
fwrite($fp, 'The quick brown fox jumped over the lazy dog.');
rewind($fp);
$ctx = hash_init('md5');
hash_update_stream($ctx, $fp);
echo hash_final($ctx);
?>
以上例程會輸出:
5c6ffbdd40d9556b73a21e63c3e0e904
參見
- hash_init() - 初始化增量雜湊運算上下文
- hash_update() - 向活躍的雜湊運算上下文中填充數據
- hash_final() - 結束增量雜湊,並且返回摘要結果
- hash() - 產生雜湊值 (訊息摘要)
- hash_file() - 給指定檔案的內容產生雜湊值