sha1_file
sha1_file
(PHP 4 >= 4.3.0, PHP 5, PHP 7)
sha1_file - 计算文件的sha1哈希值
描述
string sha1_file ( string $filename [, bool $raw_output = false ] )
使用»US安全散列算法1计算由文件名指定的文件的sha1散列,并返回该散列。 散列是一个40个字符的十六进制数字。
参数
filename
要散列的文件的文件名。
raw_output
当为TRUE
时,返回长度为20的原始二进制格式的摘要。
返回值
成功时返回字符串,否则返回FALSE。
例子
示例#1 sha1_file()示例
<?php
foreach(glob('/home/Kalle/myproject/*.php') as $ent)
{
if(is_dir($ent))
{
continue;
}
echo $ent . ' (SHA1: ' . sha1_file($ent) . ')', PHP_EOL;
}
?>
更新日志
版 | 描述 |
---|---|
5.1.0 | 更改了函数以使用流API。这意味着你可以在包装中使用它,比如sha1_file(' http://example.com/ .. ') |
扩展内容
- sha1() - 计算字符串的sha1哈希
- md5_file() - 计算给定文件的md5散列值
- crc32() - 计算字符串的crc32多项式
← setlocale
sha1 →