Lines Matching refs:file
11 echo "*** Testing fnmatch() with file ***\n";
12 $file = basename(__FILE__);
14 var_dump( fnmatch("*.php", $file) );
15 var_dump( fnmatch("*.p*p", $file) );
16 var_dump( fnmatch("*.p*", $file) );
17 var_dump( fnmatch("*", $file) );
18 var_dump( fnmatch("**", $file) );
19 var_dump( fnmatch("*.phpt", $file) );
21 echo "*** Testing fnmatch() with other than file ***\n";
30 *** Testing fnmatch() with file ***
37 *** Testing fnmatch() with other than file ***