November 2002
Intermediate to advanced
640 pages
16h 33m
English
You want to find all filenames that match a pattern.
If your
pattern is a regular expression, read
each file from the directory and test the name with
preg_match( )
:
$d = dir('/tmp') or die($php_errormsg);
while (false !== ($f = $d->read())) {
// only match alphabetic names
if (preg_match('/^[a-zA-Z]+$/',$f)) {
print "$f\n";
}
}
$d->close();If your pattern is a
shell glob (e.g.,
*.*), use the
backtick operator with
ls (Unix) or dir (Windows)
to get the matching filenames. For
Unix:
$files = explode("\n",`ls -1 *.gif`);
foreach ($files as $file) {
print "$b\n";
}For Windows:
$files = explode("\n",`dir /b *.gif`);
foreach ($files as $file) {
print "$b\n";
}Recipe 19.8 details on iterating through each file in a directory; information about shell pattern matching is available at http://www.gnu.org/manual/bash/html_node/bashref_35.html.