Lines Matching refs:glob
2 Test glob() function: usage variations
11 echo "*** Testing glob() : usage variations ***\n";
41 using glob() */
45 var_dump( glob($pattern) ); // default arguments
46 var_dump( glob($pattern, GLOB_MARK) );
47 var_dump( glob($pattern, GLOB_NOSORT) );
48 var_dump( glob($pattern, GLOB_NOCHECK) );
49 var_dump( glob($pattern, GLOB_NOESCAPE) );
50 var_dump( glob($pattern, GLOB_ERR) );
57 echo "\n*** Testing glob() with pattern within braces ***\n";
58 var_dump( glob("$file_path/glob_variation/*{5}", GLOB_BRACE) );
66 echo "\n*** Testing glob() on directories ***\n";
72 using glob() */
76 var_dump( glob($pattern, GLOB_ONLYDIR) );
93 *** Testing glob() : usage variations ***
332 glob(): Argument #1 ($pattern) must not contain any null bytes
398 *** Testing glob() with pattern within braces ***
404 *** Testing glob() on directories ***
435 glob(): Argument #1 ($pattern) must not contain any null bytes