PHP glob() Function
Complete PHP Filesystem Reference
Definition and Usage
The glob() function returns an array of filenames or directories matching a specified pattern.
This function returns an array of files/directories, or FALSE on failure.
Syntax
glob(pattern,flags)
Parameter | Description |
---|---|
pattern | Required. Specifies the pattern to search for |
flags | Optional. Specifies special settings. Possible values:
|
Example 1
<?php
print_r(glob("*.txt"));
?>
The output of the code above could be:
Array
(
[0] => target.txt
[1] => source.txt
[2] => test.txt
[3] => test2.txt
)
Example 2
<?php
print_r(glob("*.*"));
?>
The output of the code above could be:
Array
(
[0] => contacts.csv
[1] => default.php
[2] => target.txt
[3] => source.txt
[4] => tem1.tmp
[5] => test.htm
[6] => test.ini
[7] => test.php
[8] => test.txt
[9] => test2.txt
)
Complete PHP Filesystem Reference