function find_duplicate_files() {
$names = scandir_recursive( 'D:\Main' );
$files = array();
foreach( $names as $name ) {
if( count( $name ) > 1 ) {
$files[] = $name;
}
}
print_r( $files );
}
函数 scandir_recursive() 递归解析指定的目录树并创建一个关联数组,其键是在所有子目录中找到的文件名,其值是相应的路径。
function scandir_recursive( $dir, &$result = array() ) {
$dir = rtrim($dir, DIRECTORY_SEPARATOR);
foreach ( scandir($dir) as $node ) {
if ($node !== '.' and $node !== '..') {
if (is_dir($dir . DIRECTORY_SEPARATOR . $node)) {
scandir_recursive($dir . DIRECTORY_SEPARATOR . $node, $result);
} else {
$result[$node][] = $dir . DIRECTORY_SEPARATOR . $node;
}
}
}
return $result;
}
// 它会像这样输出
Array
(
[0] => Array
(
[0] => D:\Main\Games\troy.php
[1] => D:\Main\Games\Child Games\troy.php
[2] => D:\Main\Games\Sports\troy.php
)
[1] => Array
(
[0] => D:\Main\index.php
[1] => D:\Main\Games\index.php
)
)
我们可以从中识别哪些是重复文件。当您的代码库有大量文件时,它很有用。(而且我经常用它来查找重复的音乐 mp3 文件:P)