123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419 |
- --TEST--
- Test fnmatch() function: Variations
- --SKIPIF--
- <?php
- if (!function_exists('fnmatch'))
- die("skip fnmatch() function is not available");
- ?>
- --FILE--
- <?php
- echo "*** Testing fnmatch() with file and various patterns ***\n";
- $file_name = __DIR__."/match.tmp";
- /* avoid using \, it breaks the pattern */
- if (substr(PHP_OS, 0, 3) == 'WIN') {
- $file_name = str_replace('\\','/', $file_name);
- }
- fopen($file_name, "w");
- $pattern_arr = array(
- 0 => "*.tmp",
- 1 => "match*",
- 2 => "mat*",
- 3 => "mat*tmp",
- 4 => "m*t",
- 5 => "ma[pt]ch*",
- 6 => "*.t*",
- 7 => "***.tmp",
- 8 => "match**",
- 9 => "*.t*p",
- 10 => "",
- 11 => "match",
- 12 => ".tmp",
- 13 => "?match",
- 14 => "match?tmp",
- 15 => "?tmp",
- 16 => "match?",
- 17 => "?match?",
- 18 => "match.tmp",
- 19 => "/match.tmp",
- 20 => "/match.tmp/",
- 21 => 'match.tmp',
- 22 => 'match.tmp\0',
- 23 => "match.tmp\0",
- 24 => "match\0.tmp",
- 25 => chr(109).chr(97)."tch.tmp",
- 26 => chr(109).chr(97).chr(116).chr(99).chr(104).".tmp",
- 27 => chr(109).chr(97).chr(116).chr(99).chr(104).chr(46).chr(116).chr(120).chr(116),
- 28 => chr(109).chr(97).chr(116).chr(99).chr(104).".".chr(116).chr(120).chr(116),
- 29 => "MATCH.TMP",
- 30 => "MATCH*",
- 31 => $file_name,
- /* binary inputs */
- 32 => b"match*",
- 33 => b"*.tmp",
- 34 => b"mat*",
- 35 => b"mat*tmp",
- 36 => b"m*t",
- );
- for( $i = 0; $i<count($pattern_arr); $i++ ) {
- echo "-- Iteration $i --\n";
- try {
- var_dump( fnmatch($pattern_arr[$i], $file_name) );
- } catch (Error $e) {
- echo $e->getMessage(), "\n";
- }
- }
- unlink($file_name);
- echo "\n*** Testing fnmatch() with other types other than files ***";
- /* defining a common function */
- function match_( $pattern, $string ) {
- for( $i = 0; $i<count($pattern); $i++ ) {
- echo "-- Iteration $i --\n";
- for( $j = 0; $j<count($string); $j++ ) {
- try {
- var_dump( fnmatch($pattern[$i], $string[$j]) );
- } catch (Error $e) {
- echo $e->getMessage(), "\n";
- }
- }
- }
- }
- echo "\n--- With Integers ---\n";
- $int_arr = array(
- 16,
- 16.00,
- 020,
- 020.00,
- 0xF,
- 0xF0000
- );
- match_($int_arr, $int_arr);
- echo "\n--- With Strings ---\n";
- $str_arr = array(
- "string",
- "string\0",
- 'string',
- "str\0ing",
- "stringstring",
- /* binary input */
- b"string"
- );
- match_($str_arr, $str_arr);
- echo "\n--- With booleans ---\n";
- $bool_arr = array(
- TRUE,
- true,
- 1,
- 10,
- FALSE,
- false,
- 0,
- "",
- "string"
- );
- match_($bool_arr, $bool_arr);
- echo "\n--- With NULL ---\n";
- $null_arr = array(
- "",
- "\0",
- "string",
- 0
- );
- match_($null_arr, $null_arr);
- echo "\n*** Done ***\n";
- ?>
- --EXPECT--
- *** Testing fnmatch() with file and various patterns ***
- -- Iteration 0 --
- bool(true)
- -- Iteration 1 --
- bool(false)
- -- Iteration 2 --
- bool(false)
- -- Iteration 3 --
- bool(false)
- -- Iteration 4 --
- bool(false)
- -- Iteration 5 --
- bool(false)
- -- Iteration 6 --
- bool(true)
- -- Iteration 7 --
- bool(true)
- -- Iteration 8 --
- bool(false)
- -- Iteration 9 --
- bool(true)
- -- Iteration 10 --
- bool(false)
- -- Iteration 11 --
- bool(false)
- -- Iteration 12 --
- bool(false)
- -- Iteration 13 --
- bool(false)
- -- Iteration 14 --
- bool(false)
- -- Iteration 15 --
- bool(false)
- -- Iteration 16 --
- bool(false)
- -- Iteration 17 --
- bool(false)
- -- Iteration 18 --
- bool(false)
- -- Iteration 19 --
- bool(false)
- -- Iteration 20 --
- bool(false)
- -- Iteration 21 --
- bool(false)
- -- Iteration 22 --
- bool(false)
- -- Iteration 23 --
- fnmatch(): Argument #1 ($pattern) must not contain any null bytes
- -- Iteration 24 --
- fnmatch(): Argument #1 ($pattern) must not contain any null bytes
- -- Iteration 25 --
- bool(false)
- -- Iteration 26 --
- bool(false)
- -- Iteration 27 --
- bool(false)
- -- Iteration 28 --
- bool(false)
- -- Iteration 29 --
- bool(false)
- -- Iteration 30 --
- bool(false)
- -- Iteration 31 --
- bool(true)
- -- Iteration 32 --
- bool(false)
- -- Iteration 33 --
- bool(true)
- -- Iteration 34 --
- bool(false)
- -- Iteration 35 --
- bool(false)
- -- Iteration 36 --
- bool(false)
- *** Testing fnmatch() with other types other than files ***
- --- With Integers ---
- -- Iteration 0 --
- bool(true)
- bool(true)
- bool(true)
- bool(false)
- bool(false)
- bool(false)
- -- Iteration 1 --
- bool(true)
- bool(true)
- bool(true)
- bool(false)
- bool(false)
- bool(false)
- -- Iteration 2 --
- bool(true)
- bool(true)
- bool(true)
- bool(false)
- bool(false)
- bool(false)
- -- Iteration 3 --
- bool(false)
- bool(false)
- bool(false)
- bool(true)
- bool(false)
- bool(false)
- -- Iteration 4 --
- bool(false)
- bool(false)
- bool(false)
- bool(false)
- bool(true)
- bool(false)
- -- Iteration 5 --
- bool(false)
- bool(false)
- bool(false)
- bool(false)
- bool(false)
- bool(true)
- --- With Strings ---
- -- Iteration 0 --
- bool(true)
- fnmatch(): Argument #2 ($filename) must not contain any null bytes
- bool(true)
- fnmatch(): Argument #2 ($filename) must not contain any null bytes
- bool(false)
- bool(true)
- -- Iteration 1 --
- fnmatch(): Argument #1 ($pattern) must not contain any null bytes
- fnmatch(): Argument #1 ($pattern) must not contain any null bytes
- fnmatch(): Argument #1 ($pattern) must not contain any null bytes
- fnmatch(): Argument #1 ($pattern) must not contain any null bytes
- fnmatch(): Argument #1 ($pattern) must not contain any null bytes
- fnmatch(): Argument #1 ($pattern) must not contain any null bytes
- -- Iteration 2 --
- bool(true)
- fnmatch(): Argument #2 ($filename) must not contain any null bytes
- bool(true)
- fnmatch(): Argument #2 ($filename) must not contain any null bytes
- bool(false)
- bool(true)
- -- Iteration 3 --
- fnmatch(): Argument #1 ($pattern) must not contain any null bytes
- fnmatch(): Argument #1 ($pattern) must not contain any null bytes
- fnmatch(): Argument #1 ($pattern) must not contain any null bytes
- fnmatch(): Argument #1 ($pattern) must not contain any null bytes
- fnmatch(): Argument #1 ($pattern) must not contain any null bytes
- fnmatch(): Argument #1 ($pattern) must not contain any null bytes
- -- Iteration 4 --
- bool(false)
- fnmatch(): Argument #2 ($filename) must not contain any null bytes
- bool(false)
- fnmatch(): Argument #2 ($filename) must not contain any null bytes
- bool(true)
- bool(false)
- -- Iteration 5 --
- bool(true)
- fnmatch(): Argument #2 ($filename) must not contain any null bytes
- bool(true)
- fnmatch(): Argument #2 ($filename) must not contain any null bytes
- bool(false)
- bool(true)
- --- With booleans ---
- -- Iteration 0 --
- bool(true)
- bool(true)
- bool(true)
- bool(false)
- bool(false)
- bool(false)
- bool(false)
- bool(false)
- bool(false)
- -- Iteration 1 --
- bool(true)
- bool(true)
- bool(true)
- bool(false)
- bool(false)
- bool(false)
- bool(false)
- bool(false)
- bool(false)
- -- Iteration 2 --
- bool(true)
- bool(true)
- bool(true)
- bool(false)
- bool(false)
- bool(false)
- bool(false)
- bool(false)
- bool(false)
- -- Iteration 3 --
- bool(false)
- bool(false)
- bool(false)
- bool(true)
- bool(false)
- bool(false)
- bool(false)
- bool(false)
- bool(false)
- -- Iteration 4 --
- bool(false)
- bool(false)
- bool(false)
- bool(false)
- bool(true)
- bool(true)
- bool(false)
- bool(true)
- bool(false)
- -- Iteration 5 --
- bool(false)
- bool(false)
- bool(false)
- bool(false)
- bool(true)
- bool(true)
- bool(false)
- bool(true)
- bool(false)
- -- Iteration 6 --
- bool(false)
- bool(false)
- bool(false)
- bool(false)
- bool(false)
- bool(false)
- bool(true)
- bool(false)
- bool(false)
- -- Iteration 7 --
- bool(false)
- bool(false)
- bool(false)
- bool(false)
- bool(true)
- bool(true)
- bool(false)
- bool(true)
- bool(false)
- -- Iteration 8 --
- bool(false)
- bool(false)
- bool(false)
- bool(false)
- bool(false)
- bool(false)
- bool(false)
- bool(false)
- bool(true)
- --- With NULL ---
- -- Iteration 0 --
- bool(true)
- fnmatch(): Argument #2 ($filename) must not contain any null bytes
- bool(false)
- bool(false)
- -- Iteration 1 --
- fnmatch(): Argument #1 ($pattern) must not contain any null bytes
- fnmatch(): Argument #1 ($pattern) must not contain any null bytes
- fnmatch(): Argument #1 ($pattern) must not contain any null bytes
- fnmatch(): Argument #1 ($pattern) must not contain any null bytes
- -- Iteration 2 --
- bool(false)
- fnmatch(): Argument #2 ($filename) must not contain any null bytes
- bool(true)
- bool(false)
- -- Iteration 3 --
- bool(false)
- fnmatch(): Argument #2 ($filename) must not contain any null bytes
- bool(false)
- bool(true)
- *** Done ***
|