欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP去除重复图片文件的代码

程序员文章站 2022-05-22 10:25:15
...
  1. /**

  2. * 去除重复的图片文件
  3. * by bbs.it-home.org
  4. */
  5. exec("find . -type f", $lines);
  6. $arr = array();

  7. $del = array();
  8. $n = 0;

  9. foreach($lines as $line){
  10. $line = trim($line);
  11. if(!$line){
  12. continue;
  13. }
  14. $n ++;
  15. $md5 = md5_file($line);
  16. if(isset($arr[$md5])){

  17. $del[] = $line;
  18. //echo "$n del $line\n";
  19. unlink("{$line}");
  20. }else{
  21. $arr[$md5] = 1;
  22. }
  23. }
  24. echo "del " . count($del) . " files\n";

  25. //echo join("\n", $del);
复制代码