Home
last modified time | relevance | path

Searched refs:glob (Results 1 – 25 of 75) sorted by relevance

123

/PHP-5.5/ext/standard/tests/file/
H A Dglob_error.phpt2 Test glob() function: error conditions
5 /* Prototype: array glob ( string $pattern [, int $flags] );
17 echo "*** Testing glob() : error conditions ***\n";
19 echo "-- Testing glob() with unexpected no. of arguments --\n";
20 var_dump( glob() ); // args < expected
23 echo "\n-- Testing glob() with invalid arguments --\n";
24 var_dump( glob(dirname(__FILE__)."/glob_error/wonder12345", '') );
37 *** Testing glob() : error conditions ***
38 -- Testing glob() with unexpected no. of arguments --
40 Warning: glob() expects at least 1 parameter, 0 given in %s on line %d
[all …]
H A Dglob_variation4.phpt2 Test glob() function: ensure no platform difference, variation 2
9 var_dump(glob("$path/*.none"));
10 var_dump(glob("$path/?.none"));
11 var_dump(glob("$path/*{hello,world}.none"));
12 var_dump(glob("$path/*/nothere"));
13 var_dump(glob("$path/[aoeu]*.none"));
14 var_dump(glob("$path/directly_not_exists"));
H A Dglob_variation3.phpt2 Test glob() function: ensure no platform difference
9 var_dump(glob("$path/*.none"));
10 var_dump(glob("$path/?.none"));
11 var_dump(glob("$path/*{hello,world}.none"));
12 var_dump(glob("$path/*/nothere"));
13 var_dump(glob("$path/[aoeu]*.none"));
14 var_dump(glob("$path/directly_not_exists"));
H A Dglob_variation6.phpt2 Test glob() function: ensure no platform difference, variation 4
11 var_dump(glob("$path/*.none"));
12 var_dump(glob("$path/?.none"));
13 var_dump(glob("$path/*{hello,world}.none"));
14 var_dump(glob("$path/*/nothere"));
15 var_dump(glob("$path/[aoeu]*.none"));
16 var_dump(glob("$path/directly_not_exists"));
H A Dglob_variation5.phpt2 Test glob() function: ensure no platform difference, variation 3
11 var_dump(glob("$path/*.none"));
12 var_dump(glob("$path/?.none"));
13 var_dump(glob("$path/*{hello,world}.none"));
14 var_dump(glob("$path/*/nothere"));
15 var_dump(glob("$path/[aoeu]*.none"));
16 var_dump(glob("$path/directly_not_exists"));
H A Dglob_basic.phpt2 Test glob() function: basic functions
5 /* Prototype: array glob ( string $pattern [, int $flags] );
9 echo "*** Testing glob() : basic functions ***\n";
27 // glob() with default arguments
28 sort_var_dump( glob($dirname."/*") );
29 sort_var_dump( glob($dirname."/*.txt") );
30 sort_var_dump( glob($dirname."/*.t?t") );
31 sort_var_dump( glob($dirname."/*.t*t") );
32 sort_var_dump( glob($dirname."/*.?") );
33 sort_var_dump( glob($dirname."/*.*") );
[all …]
H A Dglob_variation2.phpt2 Test glob() function with relative path
5 /* Prototype: array glob ( string $pattern [, int $flags] );
21 echo "Testing glob() with relative paths:\n";
24 var_dump( glob("./*") );
25 var_dump( glob("../$dir_name/*"));
28 var_dump( glob("$dir_name/*"));
29 var_dump( glob("$dir_name"));
40 Testing glob() with relative paths:
H A Dglob_error_002-win32.phpt2 Test glob() function: error condition - pattern too long.
12 /* Prototype: array glob ( string $pattern [, int $flags] );
16 echo "*** Testing glob() : error condition - pattern too long. ***\n";
18 var_dump(glob(str_repeat('x', 3000)));
23 *** Testing glob() : error condition - pattern too long. ***
25 Warning: glob(): Pattern exceeds the maximum allowed length of %d characters in %s on line %d
H A Dglob_variation-win32.phpt2 Test glob() function: usage variations
45 using glob() */
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) );
72 using glob() */
75 var_dump( glob($pattern, GLOB_ONLYDIR) );
89 *** Testing glob() : usage variations ***
[all …]
H A Dglob_variation.phpt2 Test glob() function: usage variations
48 using glob() */
52 var_dump( glob($pattern, GLOB_MARK) );
53 var_dump( glob($pattern, GLOB_NOSORT) );
54 var_dump( glob($pattern, GLOB_NOCHECK) );
55 var_dump( glob($pattern, GLOB_NOESCAPE) );
56 var_dump( glob($pattern, GLOB_ERR) );
75 using glob() */
78 var_dump( glob($pattern, GLOB_ONLYDIR) );
92 *** Testing glob() : usage variations ***
[all …]
H A Dbug24482.phpt5 if (!function_exists("glob")) {
6 die('skip glob() not available');
16 $globdirs = glob("*", GLOB_ONLYDIR);
30 echo "glob found:\n";
H A Dbug41655_2.phpt2 Bug #41655 (open_basedir bypass via glob()) 2/2
8 $a=glob($dir . "/test.*");
H A Dbug41655_1.phpt2 Bug #41655 (open_basedir bypass via glob()) 1/2
9 $a=glob("./*.jpeg");
/PHP-5.5/ext/simplexml/tests/
H A D022.phpt10 <pres><content><file glob="slide_*.xml"/></content></pres>
25 var_dump($file['glob']);
37 ["glob"]=>
46 ["glob"]=>
54 ["glob"]=>
/PHP-5.5/main/streams/
H A Dglob_wrapper.c41 glob_t glob; member
102 return pglob->glob.gl_pathc; in _php_glob_stream_get_count()
148 if (pglob->index < (size_t)pglob->glob.gl_pathc) { in php_glob_stream_read()
149 …php_glob_stream_path_split(pglob, pglob->glob.gl_pathv[pglob->index++], pglob->flags & GLOB_APPEND… in php_glob_stream_read()
153 pglob->index = pglob->glob.gl_pathc; in php_glob_stream_read()
170 globfree(&pglob->glob); in php_glob_stream_close()
229 if (0 != (ret = glob(path, pglob->flags & GLOB_FLAGMASK, NULL, &pglob->glob))) { in php_glob_stream_opener()
254 if (pglob->glob.gl_pathc) { in php_glob_stream_opener()
255 php_glob_stream_path_split(pglob, pglob->glob.gl_pathv[0], 1, &tmp TSRMLS_CC); in php_glob_stream_opener()
/PHP-5.5/tests/security/
H A Dopen_basedir_glob.phpt8 test_open_basedir("glob");
16 *** Testing open_basedir configuration [glob] ***
51 *** Finished testing open_basedir configuration [glob] ***
H A Dopen_basedir_glob_variation.phpt2 Test open_basedir configuration for glob
12 var_dump(glob("../globtest*"));
/PHP-5.5/ext/fileinfo/
H A Dfileinfo.php11 $files = glob("*");
25 $files = glob("*");
/PHP-5.5/ext/gd/tests/
H A Dimagegd2_nullbyte_injection.phpt9 foreach (glob($tempdir . "/test*") as $file ) { unlink($file); }
28 foreach (glob($tempdir . "/test*") as $file ) { unlink($file); }
H A Dimagegd_nullbyte_injection.phpt9 foreach (glob($tempdir . "/test*") as $file ) { unlink($file); }
28 foreach (glob($tempdir . "/test*") as $file ) { unlink($file); }
H A Dimagejpeg_nullbyte_injection.phpt5 foreach (glob($tempdir . "/test*") as $file ) { unlink($file); }
32 foreach (glob($tempdir . "/test*") as $file ) { unlink($file); }
H A Dimagepng_nullbyte_injection.phpt5 foreach (glob($tempdir . "/test*") as $file ) { unlink($file); }
32 foreach (glob($tempdir . "/test*") as $file ) { unlink($file); }
H A Dimagewbmp_nullbyte_injection.phpt5 foreach (glob($tempdir . "/test*") as $file ) { unlink($file); }
32 foreach (glob($tempdir . "/test*") as $file ) { unlink($file); }
H A Dimagewebp_nullbyte_injection.phpt5 foreach (glob($tempdir . "/test*") as $file ) { unlink($file); }
32 foreach (glob($tempdir . "/test*") as $file ) { unlink($file); }
H A Dimagegif_nullbyte_injection.phpt5 foreach (glob($tempdir . "/test*") as $file ) { unlink($file); }
32 foreach (glob($tempdir . "/test*") as $file ) { unlink($file); }

Completed in 464 milliseconds

123