ตัวอย่าง
คำนวณ SHA-1 กัญชาของไฟล์ข้อความ "test.txt" :
<?php
$filename = "test.txt";
$sha1file = sha1_file($filename);
echo $sha1file;
?>
การส่งออกของโค้ดข้างต้นจะได้รับ:
aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d
ความหมายและการใช้งาน
sha1_file() ฟังก์ชั่นคำนวณ SHA-1 กัญชาของไฟล์
sha1_file() ฟังก์ชั่นการใช้อัลกอริทึมการรักษาความปลอดภัยของสหรัฐกัญชา 1
จาก RFC 3174 - สหรัฐแฮการรักษาความปลอดภัยขั้นตอนวิธีที่ 1: "SHA-1 produces a 160-bit output called a message digest. The message digest can then, for example, be input to a signature algorithm which generates or verifies the signature for the message. Signing the message digest rather than the message often improves the efficiency of the process because the message digest is usually much smaller in size than the message. The same hash algorithm must be used by the verifier of a digital signature as was used by the creator of the digital signature."
ฟังก์ชั่นนี้จะส่งกลับคำนวณ SHA-1 กัญชาในความสำเร็จหรือความล้มเหลวผิดพลาดใน
วากยสัมพันธ์
sha1_file( file,raw )
พารามิเตอร์ | ลักษณะ |
---|---|
file | จำเป็นต้องใช้ ไฟล์ที่จะนำไปคำนวณ |
raw | ไม่จำเป็น. ค่าบูลีนที่ระบุหกเหลี่ยมหรือรูปแบบการออกไบนารี:
|
รายละเอียดทางเทคนิค
กลับค่า: | ผลตอบแทนที่ได้จากการคำนวณ SHA-1 กัญชาในความสำเร็จหรือความล้มเหลวผิดพลาดใน |
---|---|
PHP เวอร์ชัน: | 4.3.0+ |
การเปลี่ยนแปลง: | พารามิเตอร์ดิบกลายเป็นตัวเลือกใน PHP 5.0 ในฐานะของ PHP 5.1 ก็เป็นไปได้ที่จะใช้ sha1_file() กับห่อเช่น sha1_file("http://w3ii.com/..") |
ตัวอย่างอื่น ๆ
ตัวอย่างที่ 1
เก็บ SHA-1 กัญชาของ "test.txt" ในไฟล์:
<?php
$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.";
}
?>
การส่งออกของโค้ดข้างต้นอาจจะ:
The file is ok.
<PHP สตริงอ้างอิง