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.
我正在尝试使用 PHP 嗅出图像数据。基本上我想扫描图像并从图像中获取某种十六进制、exif 或 data-uri,以便可以存储和比较它。目的不是为了比较和删除提交的重复项以外的任何原因。
谁能引导我朝着正确的方向前进?
谢谢。
您可以比较图像文件的 md5 哈希以确定它们是否为重复文件。
if( md5_file( $image1 ) == md5_file( $image2 ) ) { /* images are duplicate */ }