You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

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);

}


  • No labels