PHP class: Duplicate finder
Another straight to the point solution

Example usage:
include 'DupFinder.php';
$d = new DupFinder;
$results = $d->scan('kat', true);
print_r($results);
Results are grouped:
Array
(
[0] => Array
(
[0] => kat\duplicate1a.PNG
[1] => kat\subdir\duplicate1b.PNG
)
[1] => Array
(
[0] => kat\duplicate2a.txt
[1] => kat\duplicate2b.txt
)
)
Licence: MIT (as always :) )
Comments