Which one of the following PHP functions can be used to find files?
glob()
Correct:
glob()
Explanation: The function glob() returns an array of filenames or directories which matches a specified pattern. The function returns an array of files/directories, or it will return FALSE on failure. Here is an example-