Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个相同的图像存储在两个不同的服务器(保管箱和我自己的)中。但是,我意识到
hash("md5",file_get_contents($image1)) hash("md5",file_get_contents($image2))
正在为这些相同的图像返回不同的哈希值。我如何确保它们都返回相同的字符串?
您是否考虑过使用 md5_file?
md5_file($image1); md5_file($image2);
http://www.php.net/manual/en/function.md5-file.php