結束增量雜湊,並且返回摘要結果

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

參數

context

hash_init() 函式返回的雜湊運算上下文資源。

raw_output

設定為 true,輸出格式為原始的二進制數據。 設定為 false,輸出小寫的 16 進位制字串。

返回值

如果 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

參見

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *