hash_final
hash_final
(PHP 5 >= 5.1.2, PHP 7, PECL hash >= 1.1)
hash_final — 完成一个增量散列并返回结果摘要
描述
string hash_final ( resource $context [, bool $raw_output = false ] )
参数
context
由hash_init()返回的散列上下文。
raw_output
当设置为TRUE
时,输出原始二进制数据。当设置为FALSE
时,输出小写hexits。
返回值
将包含计算的消息摘要的字符串返回为小写hexits,除非raw_output
设置为true,否则返回消息摘要的原始二进制表示形式。
例子
示例#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