Как насчет этого:
class Levenshtein
{
private $_p = array();
public function __construct($input, $compare)
{
$this->_p['input'] = $input;
$this->_p['compare'] = $compare; // string to check against
}
public function __get($property)
{
if (array_key_exists($property, $this->_p)) {
return $this->_p[$property];
}
if (!isset($this->_p['dist']) && $property === 'dist') {
$this->_p['dist'] = levenshtein($this->_p['input'],
$this->_p['compare']);
return $this->_p['dist'];
}
}
}
class DirectoryLevenshtein
{
private $_directory;
private $_filePath;
private $_distances = array();
public function __construct($directoryPath, $filePath = null)
{
if (!is_dir($directoryPath)) {
throw new Exception("Path '$directoryPath' does not exist");
}
if (substr($directoryPath, -1) !== '/') {
$directoryPath .= '/';
}
$this->_directory = $directoryPath;
if ($filePath !== null) {
if (!$this->setFilePath($filePath)) {
throw new Exception("File '$filePath' is not readable");
}
}
}
public function __get($file)
{
if (array_key_exists($file, $this->_distances)) {
return $this->_distances[$file];
}
if (is_readable($this->_directory . $file)) {
if (empty($this->_filePath)) {
return null;
}
$input = file_get_contents($this->_filePath);
$compare = file_get_contents($this->_directory . $file);
$this->_distances[$file] = new Levenshtein($input, $compare);
return $this->_distances[$file];
}
}
public function getDirectoryContents()
{
$files = scandir($this->_directory);
while ($files[0] === '.' || $files[0] === '..') {
array_shift($files);
}
return $files;
}
public function setFilePath($filePath)
{
if (empty($this->_filePath) && is_readable($filePath)) {
$this->_filePath = $filePath;
return true;
}
return false;
}
}
Чтобы использовать его, сделайте что-то вроде следующего:
// could user session wrapper instead
$userDir = '/path/to/user/dirs/' . $_SESSION['user'];
// file to compare all files with
$filePath = /path/to/file.txt
$dirLev = new DirectoryLevenshtein($userDir, $filePath);
// Files in directory
$files = $dirLev->getDirectoryContents();
// Distances
foreach ($files as $file) {
echo "$file: {$dirLev->file->dist}\n";
}