File_Find::glob()

File_Find::glob() -- find matches for a pattern in a directory

Synopsis

require_once 'File/Find.php';

array &File_Find::glob ([string $pattern string $dirpath string $pattern_type = 'php'])

Description

Search the directory to find matches for the the specified pattern.

Parameter

Return value

array - an array contains all filenames and name of subdirectories, which matches the pattern. Or a PEAR_Error.

Throws

Table 30-1. Possible PEAR_Error values

Error codeError messageReasonSolution
NULL " Cannot open directory " The given directory could not be opend. Check typing and directory permissions. This can not be caused by a competive processing the archive with Archive_Tar

Note

This function can not be called statically.

Example