中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用php怎么對兩個文件夾的異同進行比較

發布時間:2021-01-22 15:14:16 來源:億速云 閱讀:195 作者:Leah 欄目:開發技術

這期內容當中小編將會給大家帶來有關利用php怎么對兩個文件夾的異同進行比較,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

要求:

只能使用命令行,比較兩個文件夾的不同,包括文件的差異。

思考:

雖然linux下有diff。。。。還是用php吧,代碼改的方便,速度也很快,以下排除了.svn目錄的比較
文件要比較md5校驗和

思路:

1)把第一路徑作為標準路徑,列出第1個路徑中有的,第2個路徑中沒有的文件或文件夾,或者是不同的文件。
2)然后,列出第2個路徑中有的,第1個路徑中卻不存在的文件和文件夾。

調用示例:

php compare_folder.php /home/temp/2 /home/temp/55

代碼如下:

<?php 
/** 
 * 工具文件 
 * 目的在于遞歸比較兩個文件夾 
 * 
 * 調用示例 
 * php compare_folder.php /home/temp/2 /home/temp/55 
 * 
 */ 
//參數確定 
if (count($argv) > 1 ) 
 $dir1 = del_postfix($argv[1]); 
else 
 $dir1 = '/'; 
if (count($argv) > 2 ) 
 $dir2 = del_postfix($argv[2]); 
else 
 $dir2 = '/'; 
//檢查第一個路徑有,后者沒有或錯誤的方法。 
process_compare($dir1, $dir2, 0); 
echo "===========================================================\n"; 
//檢查第2個路徑的多余文件夾或文件 
process_compare($dir2 , $dir1, 1); 
echo "all OK\n"; 
/** 
 * 去除路徑末尾的/,并確保是絕對路徑 
 * 
 * @param unknown_type $dir 
 * @return unknown 
 */ 
function del_postfix($dir) 
{ 
 if (!preg_match('#^/#', $dir)) { 
  throw new Exception('參數必須是絕對路徑'); 
 } 
 $dir = preg_replace('#/$#', '', $dir); 
 return $dir; 
} 
/** 
 * 公用函數,會調用一個遞歸方法實現比較 
 * 
 * @param string $dir1 作為標準的路徑 
 * @param string $dir2 對比用的路徑 
 * @param int $only_check_has 為1表示不比較文件差異,為0表示還要比較文件的md5校驗和 
 */ 
function process_compare($dir1, $dir2, $only_check_has){ 
 compare_file_folder($dir1, $dir1, $dir2, $only_check_has); 
} 
/** 
 * 真實的函數,私有函數 
 * 
 * @param string $dir1  路徑1,是標準 
 * @param string $base_dir1 不變的參數路徑2 
 * @param string $base_dir2 不變的待比較的路徑2 
 * @param int $only_check_has 為1表示不比較文件差異,為0表示還要比較文件的md5校驗和 
 * 
 */ 
function compare_file_folder($dir1, $base_dir1, $base_dir2, $only_check_has=0){ 
 if (is_dir($dir1)) { 
  $handle = dir($dir1); 
  if ($dh = opendir($dir1)) { 
   while ($entry = $handle->read()) { 
    if (($entry != ".") && ($entry != "..") && ($entry != ".svn")){ 
     $new = $dir1."/".$entry; 
     //echo 'compare: ' . $new . "\n"; 
     $other = preg_replace('#^'. $base_dir1 .'#' , $base_dir2, $new); 
     if(is_dir($new)) { 
      //比較 
      if (!is_dir($other)) { 
       echo '!!not found direction: '. $other. ' (' . $new .")\n"; 
      } 
      compare_file_folder($new, $base_dir1,$base_dir2, $only_check_has) ; 
     } else { //如果1是文件,則2也應該是文件 
      if (!is_file($other)) { 
       echo '!!not found file:  '. $other. ' ('.$new .")\n"; 
      }elseif ($only_check_has ==0 && ( md5_file($other) != md5_file($new) ) ){ 
       echo '!!file md5 error:  '. $other. ' ('.$new .")\n"; 
      } 
     } 
    } 
   } 
   closedir($dh); 
  } 
 } 
} 
?>

上述就是小編為大家分享的利用php怎么對兩個文件夾的異同進行比較了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

连江县| 阳新县| 兴隆县| 鲁山县| 松潘县| 利辛县| 绍兴县| 手机| 盈江县| 萍乡市| 宁河县| 成武县| 吉隆县| 勃利县| 泰安市| 平昌县| 北川| 浦江县| 沂源县| 察隅县| 红桥区| 定襄县| 方山县| 安徽省| 永康市| 漠河县| 固镇县| 石楼县| 平昌县| 郁南县| 兖州市| 潞城市| 刚察县| 十堰市| 景东| 喜德县| 湖州市| 镇原县| 嘉鱼县| 论坛| 周宁县|