Find pathnames matching pattern in PHP
Description
The following code shows how to find pathnames matching pattern.
Example
/* w w w .ja v a 2 s.c o m*/
<?php
// Loop over all *.php files in ext/spl/examples/ directory
// and print the filename and its size
$it = new DirectoryIterator("glob://ext/spl/examples/*.php");
foreach($it as $f) {
printf("%s: %.1FK\n", $f->getFilename(), $f->getSize()/1024);
}
?>