PHP - hash_update_file() 函数



定义和用法

hash_update_file() 函数将使用哈希上下文更新给定文件的内容。

语法

hash_update_file ( HashContext $hcontext , string $filename [, resource $scontext = NULL ] ) : bool

参数

序号 参数和描述
1

HashContext context

使用 hash_init() 获取的哈希上下文。

2

filename

要获取其内容进行哈希的文件路径。

3

scontext

由 stream_context_create() 返回的流上下文。

返回值

PHP hash_update_file() 函数返回一个布尔值,即 true/false。

PHP 版本

此函数将在 PHP 5.1.2 或更高版本中运行。

示例 1

使用 hash_update_file −

<?php
   $hash_context = hash_init('md5');
   file_put_contents('file1.txt', 'Hello World'); 
   // create file file1.txt with content : 'Hello World'
   hash_update_file($hash_context, 'file1.txt');
   echo hash_final($hash_context);
?>

输出

这将产生以下结果 -

b10a8db164e0754105b7a99be72e3fe5

示例 2

使用 gost-crypto 算法使用 hash_update_file() −

<?php
   $hash_context = hash_init('gost-crypto');
   file_put_contents('file1.txt', 'Hello World'); 
   // create file file1.txt with content : 'Hello World'
   hash_update_file($hash_context, 'file1.txt');
   echo hash_final($hash_context);
?>

输出

这将产生以下结果 -

75ed15d84df84291c67fe07bf234ac69e92a9c2a378ee62f342af739e829eba9
php_function_reference.htm
广告