PHP glob() Function and example


 

PHP glob() Function and example

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 example

Syntax

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


Code for glob() Function using in PHP Program

<?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

Ads