Vidyalelo
PHP · Q12

Functions

Programming · PHP · question 12

Q12

Which one of the following PHP functions can be used to find files?

A.
glob()
Answer
B.
file()
C.
fold()
D.
get_file()

Answer: Option A

Solution

Answer: Option A
Solution:
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
        .
        .
        .
)