Which one of the following PHP functions can be used to find files?
A. glob()
B. file()
C. fold()
D. get_file()
Answer: Option A
Solution (By Examveda Team)
Here is an example-// get all php files AND txt files
$files = glob('*.{php,txt}', GLOB_BRACE);
print_r($files);
/* output looks like:
Array
(
[0] => phptest.php
[1] => pi.php
[2] => post_output.php
.
.
.
)
Join The Discussion