Lines Matching refs:glob
2 Test glob() function: usage variations
14 echo "*** Testing glob() : usage variations ***\n";
44 using glob() */
48 var_dump( glob($pattern) ); // default arguments
49 var_dump( glob($pattern, GLOB_MARK) );
50 var_dump( glob($pattern, GLOB_NOSORT) );
51 var_dump( glob($pattern, GLOB_NOCHECK) );
52 var_dump( glob($pattern, GLOB_NOESCAPE) );
53 var_dump( glob($pattern, GLOB_ERR) );
60 echo "\n*** Testing glob() with pattern within braces ***\n";
61 var_dump( glob("$file_path/glob_variation/*{5}", GLOB_BRACE) );
69 echo "\n*** Testing glob() on directories ***\n";
75 using glob() */
79 var_dump( glob($pattern, GLOB_ONLYDIR) );
96 *** Testing glob() : usage variations ***
335 glob(): Argument #1 ($pattern) must not contain any null bytes
401 *** Testing glob() with pattern within braces ***
407 *** Testing glob() on directories ***
438 glob(): Argument #1 ($pattern) must not contain any null bytes