-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathduplicate.php
53 lines (42 loc) · 1.17 KB
/
duplicate.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
$opts = getopt('p:h:e:');
if (isset($opts['h'])) {
usage();
}
if (empty($opts['p'])) {
echo "\nERROR:\n - A path to your files is required\n";
usage();
}
if (!is_dir($opts['p'])) {
echo "\nERROR:\n - Please pass in a real directory, unlike this mysterious '$opts[p]'\n";
usage();
}
$exts = array('xml','txt');
if (!empty($opts['e'])) {
$exts = explode(',', $opts['e']);
}
$count = 0;
foreach (new RecursiveIteratorIterator(new RecursiveDirectoryIterator($opts['p'])) as $file) {
$filepath = $file->getPathname();
// $file->getExtension() exists as of PHP 5.3.6
if (!$file->isFile() || !in_array(pathinfo($filepath, PATHINFO_EXTENSION), $exts)) {
continue;
}
$contents = file_get_contents($filepath);
preg_match_all("/\b([\w'-]+)(\s+\\1)+/i", $contents, $matches, PREG_OFFSET_CAPTURE);
if (empty($matches[1])) {
continue;
}
if (is_array($matches[0]) && count($matches[0]) > 0) {
echo $filepath . PHP_EOL;
foreach ($matches[0] as $match) {
echo "Match: {$match[0]}" . PHP_EOL;
echo "Position: {$match[1]}" . PHP_EOL;
}
}
}
function usage() {
echo "\nUSAGE:\n";
echo "$ php {$_SERVER['SCRIPT_FILENAME']} -p /path/to/check" . PHP_EOL;
exit;
}