php-src/ext/spl/examples/findregex.php
Marcus Boerger a6feb3f405 - Update examples
- Update documentation
- Move classes/interfaces already implemented in c to new subdir internal
2004-05-08 12:24:15 +00:00

34 lines
566 B
PHP
Executable File

<?php
/** Find a specific file by name.
*
* Usage: php findregex.php <path> <name>
*
* <path> Path to search in.
* <name> Filename to look for.
*
* (c) Marcus Boerger, Adam Trachtenberg, 2004
*/
if ($argc < 3) {
echo <<<EOF
Usage: php findregex.php <file> <name>
Find a specific file by name.
<path> Path to search in.
<name> Regex for filenames to look for.
EOF;
exit(1);
}
if (!class_exists("RegexFindFile")) require_once("regexfindfile.inc");
foreach(new RegexFindFile($argv[1], $argv[2]) as $file)
{
echo $file->getPathname()."\n";
}
?>