mirror of
https://github.com/php/presentations.git
synced 2026-03-24 07:32:11 +01:00
9 lines
180 B
PHP
9 lines
180 B
PHP
<?php
|
|
foreach ($files as $file) {
|
|
if (metaphone(basename($file)) == $key) {
|
|
echo "Matching file {$file}\n";
|
|
$match[] = $file;
|
|
}
|
|
else echo "Non Matching file {$file}\n";
|
|
}
|
|
?>
|