?
Which one of the following PHP functions can be used to find files?
Answer & Solution
Correct Answer:
Option
A
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
Login to post a comment or share your explanation.
Login