Home
last modified time | relevance | path

Searched refs:fnmatch (Results 1 – 12 of 12) sorted by relevance

/PHP-5.4/ext/standard/tests/file/
H A Dfnmatch_basic.phpt2 Test fnmatch() function: Basic functionality
5 if (!function_exists('fnmatch'))
18 var_dump( fnmatch("*.php", $file) );
19 var_dump( fnmatch("*.p*p", $file) );
20 var_dump( fnmatch("*.p*", $file) );
21 var_dump( fnmatch("*", $file) );
22 var_dump( fnmatch("**", $file) );
26 var_dump( fnmatch(100, 100) );
28 var_dump( fnmatch(TRUE, TRUE) );
29 var_dump( fnmatch(FALSE, FALSE) );
[all …]
H A Dfnmatch_error.phpt2 Test fnmatch() function: Error conditions
5 if (!function_exists('fnmatch'))
6 die("skip fnmatch() function is not available");
15 echo "*** Testing error conditions for fnmatch() ***";
18 var_dump( fnmatch(array(), array()) );
21 var_dump( fnmatch($file_handle, $file_handle) );
25 var_dump( fnmatch($std_obj, $std_obj) );
29 var_dump( fnmatch("match.txt") );
30 var_dump( fnmatch("") );
33 var_dump( fnmatch("match.txt", "match.txt", TRUE, 100) );
[all …]
H A Dfnmatch_variation.phpt2 Test fnmatch() function: Variations
5 if (!function_exists('fnmatch'))
6 die("skip fnmatch() function is not available");
10 /* Prototype: bool fnmatch ( string $pattern, string $string [, int $flags] )
11 Description: fnmatch() checks if the passed string would match
15 echo "*** Testing fnmatch() with file and various patterns ***\n";
69 var_dump( fnmatch($pattern_arr[$i], $file_name) );
74 echo "\n*** Testing fnmatch() with other types other than files ***";
81 var_dump( fnmatch($pattern[$i], $string[$j]) );
138 *** Testing fnmatch() with file and various patterns ***
[all …]
/PHP-5.4/ext/standard/tests/filters/
H A Dfilter_errors.inc4 if (!function_exists('fnmatch')) {
5 die('skip fnmatch() not available');
9 if (fnmatch($filter, $needle)) return;
/PHP-5.4/win32/
H A Dfnmatch.h52 PHPAPI int fnmatch(const char *pattern, const char *string, int flags);
H A Dfnmatch.c59 PHPAPI int fnmatch(const char *pattern, const char *string, int flags) in fnmatch() function
108 if (!fnmatch(pattern, string, flags & ~FNM_PERIOD)) in fnmatch()
/PHP-5.4/scripts/dev/
H A Dextern_c.php11 } else if (fnmatch("*.h", $file)) {
/PHP-5.4/ext/standard/
H A Dfile.h67 PHP_FUNCTION(fnmatch);
H A Dfile.c2425 PHP_FUNCTION(fnmatch) in PHP_FUNCTION() argument
2444 RETURN_BOOL( ! fnmatch( pattern, filename, flags )); in PHP_FUNCTION()
H A Dbasic_functions.c3159 PHP_FE(fnmatch, arginfo_fnmatch)
/PHP-5.4/win32/build/
H A Dconfig.w32372 ADD_SOURCES("win32", "inet.c fnmatch.c sockets.c");
/PHP-5.4/
H A DNEWS3780 - Fixed a possible stack exhaustion inside fnmatch(). Reported by Stefan
4620 . Added support for fnmatch() on Windows. (Pierre)
5886 implementations of the fnmatch(), setlocale() and glob() functions.

Completed in 57 milliseconds