This segment of the PHP tutorial illustrates the use of file handling function glob() and its example
This segment of the PHP tutorial illustrates the use of file handling function glob() and its exampleSyntax
array glob (pattern [, int $flags = 0 ] )
It matches the file and directories with the given pattern in the
given path.
After matching with the given pattern it gives an array
consisting of files and directories
<?php
$ar1=glob("*.txt");
foreach($ar1
as $k=>$v
)
{
echo "<br>$k--->$v";
}
?>
Output
0--->aa.txt
1--->bb.txt
2--->roseindai.txt
3--->roseindia.txt