如何比较 php 中的两个远程文件?
How to compare two remote files in php?
我想比较 php code.Both 文件中 CDN 后面的两个远程文件。如果有人知道如何执行此操作,请告诉我。
您可以比较两个文件的校验和,看看它们包含的内容是否相同。您可以使用 hash_file 来生成校验和。
示例:
$file1 = // path to file 1
$file2 = // path to file 2
$hash_file1 = hash_file("sha256", $file1)
$hash_file2 = hash_file("sha256", $file2)
if ($hash_file1 != $hash_file2){
echo "File content does not match!"
}
我想比较 php code.Both 文件中 CDN 后面的两个远程文件。如果有人知道如何执行此操作,请告诉我。
您可以比较两个文件的校验和,看看它们包含的内容是否相同。您可以使用 hash_file 来生成校验和。
示例:
$file1 = // path to file 1
$file2 = // path to file 2
$hash_file1 = hash_file("sha256", $file1)
$hash_file2 = hash_file("sha256", $file2)
if ($hash_file1 != $hash_file2){
echo "File content does not match!"
}