 
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";
}$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.
 
Copyright © 2003 O'Reilly & Associates. All rights reserved.