Home Tutorial Php Phpfiles PHP glob() Function and example

 
 

PHP glob() Function and example
Posted on: October 30, 2009 at 12:00 AM
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

Related Tags for PHP glob() Function and example:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.