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.
2 つの異なるサーバー (Dropbox と自分のサーバー) に 2 つの同一の画像が保存されています。しかし、私はそれを理解しています
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