scandir( $path) returns the searched result in array.


$result = scandir(directory, order, context)

  • it returns false on failure.


<?php

$r = scandir("/etc/");
print_r( $r);

?>


Below is another example to find files in regexp.

function findfiles( $path, $regex)
{
	$r = scandir($path);

}