hash_final
(PHP 5 >= 5.1.2, PHP 7, PHP 8, PECL hash >= 1.1)
hash_final — 結束增量雜湊,並且返回摘要結果
說明
hash_final(HashContext
$context
, bool $raw_output
= false
): string返回值
如果 raw_output
設定為 true
, 則返回原始二進制數據表示的資訊摘要,
否則返回 16 進位制小寫字串格式表示的資訊摘要。
更新日誌
版本 | 說明 |
---|---|
7.2.0 | 接收參數從資源型別修改爲 HashContext 對像型別。 |
範例
示例 #1 hash_final() 例程
<?php
$ctx = hash_init('sha1');
hash_update($ctx, 'The quick brown fox jumped over the lazy dog.');
echo hash_final($ctx);
?>
以上例程會輸出:
c0854fb9fb03c41cce3802cb0d220529e6eef94e
參見
- hash_init() - 初始化增量雜湊運算上下文
- hash_update() - 向活躍的雜湊運算上下文中填充數據
- hash_update_stream() - 從打開的流向活躍的雜湊運算上下文中填充數據
- hash_update_file() - 從檔案向活躍的雜湊運算上下文中填充數據