当前位置:Gxlcms > PHP教程 > PHP去除重复图片文件的代码

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

时间:2021-07-01 10:21:17 帮助过:25人阅读

  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);

人气教程排行