PHP sha1_file() 函數(shù)
PHP sha1_file() 函數(shù)
實(shí)例
計算文本文件 "test.txt" 的 SHA-1 散列:
<?php
$filename = "test.txt";
$sha1file = sha1_file($filename);
echo $sha1file;
?>
$filename = "test.txt";
$sha1file = sha1_file($filename);
echo $sha1file;
?>
上面的代碼將輸出:
aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d
定義和用法
sha1_file() 函數(shù)計算文件的 SHA-1 散列。
sha1_file() 函數(shù)使用美國 Secure Hash 算法 1。
來自 RFC 3174 的解釋 - 美國 Secure Hash 算法 1:SHA-1 產(chǎn)生一個名為報文摘要的 160 位的輸出。報文摘要可以被輸入到一個可生成或驗(yàn)證報文簽名的簽名算法。對報文摘要進(jìn)行簽名,而不是對報文進(jìn)行簽名,這樣可以提高進(jìn)程效率,因?yàn)閳笪恼拇笮⊥ǔ1葓笪囊『芏唷?shù)字簽名的驗(yàn)證者必須像數(shù)字簽名的創(chuàng)建者一樣,使用相同的散列算法。
如果成功則返回已計算的 SHA-1 散列,如果失敗則返回 FALSE。
語法
sha1_file(file,raw)
參數(shù) | 描述 |
---|---|
file | 必需。規(guī)定要計算的文件。 |
raw | 可選。一個規(guī)定十六進(jìn)制或二進(jìn)制輸出格式的布爾值:
|
技術(shù)細(xì)節(jié)
返回值: | 如果成功則返回已計算的 SHA-1 散列,如果失敗則返回 FALSE。 |
---|---|
PHP 版本: | 4.3.0+ |
更新日志: | 在 PHP 5.0 中,raw 參數(shù)變成可選的。 自 PHP 5.1 起,可以通過封裝使用 sha1_file()。例如: sha1_file("http://w3cschool.cc/..") |
更多實(shí)例
實(shí)例 1
在文件中存儲 "test.txt" 的 SHA-1 散列:
<?php
$sha1file = sha1_file("test.txt");
file_put_contents("sha1file.txt",$sha1file);
?>
$sha1file = sha1_file("test.txt");
file_put_contents("sha1file.txt",$sha1file);
?>
檢測 "test.txt" 是否已被更改(即 SHA-1 散列是否已被更改):
<?php
$sha1file = file_get_contents("sha1file.txt");
if (sha1_file("test.txt") == $sha1file)
{
echo "The file is ok.";
}
else
{
echo "The file has been changed.";
}
?>
$sha1file = file_get_contents("sha1file.txt");
if (sha1_file("test.txt") == $sha1file)
{
echo "The file is ok.";
}
else
{
echo "The file has been changed.";
}
?>
上面的代碼將輸出:
The file is ok.

相關(guān)文章
- PHP 變量
- PHP 常量
- PHP 數(shù)組排序
- PHP 函數(shù)
- PHP 命名空間 namespace
- PHP $_POST 變量
- PHP 包含文件 include 和 require 語句
- PHP 文件上傳
- PHP Secure E-mails
- PHP array_change_key_case() 函數(shù)
- PHP array_diff_assoc() 函數(shù)
- PHP array_fill() 函數(shù)
- PHP array_intersect_key() 函數(shù)
- PHP array_key_first() 函數(shù)
- PHP array_push() 函數(shù)
- PHP array_rand() 函數(shù)
- PHP array_udiff() 函數(shù)
- PHP uasort() 函數(shù)
- PHP usort() 函數(shù)
- PHP 5 Filesystem 函數(shù)