标签: php hash md5 unique
我有两个相同的图像存储在两个不同的服务器(dropbox和我自己的服务器)中。 但是,我意识到了
hash("md5",file_get_contents($image1)) hash("md5",file_get_contents($image2))
为这些相同的图像返回不同的哈希值。 我怎样才能确保它们都返回相同的字符串?
答案 0 :(得分:0)
你考虑过使用md5_file吗?
md5_file($image1); md5_file($image2);
http://www.php.net/manual/en/function.md5-file.php