diff options
| author | Kévin Dunglas <dunglas@gmail.com> | 2014-11-14 10:56:39 +0100 |
|---|---|---|
| committer | Kévin Dunglas <dunglas@gmail.com> | 2014-11-14 10:56:39 +0100 |
| commit | 5ad3f87557db5cb4896e44536d883dcbdbbebce7 (patch) | |
| tree | 52870dc273938e51b9845280c0112e5b71ad49b3 | |
| parent | 728945d0a56749d9ed5d3a2fcbf3db0f39c9c12b (diff) | |
| download | php-git-5ad3f87557db5cb4896e44536d883dcbdbbebce7.tar.gz | |
Fix filter_list test
| -rw-r--r-- | ext/filter/tests/008.phpt | 34 |
1 files changed, 18 insertions, 16 deletions
diff --git a/ext/filter/tests/008.phpt b/ext/filter/tests/008.phpt index a499219ee7..54880e59cc 100644 --- a/ext/filter/tests/008.phpt +++ b/ext/filter/tests/008.phpt @@ -11,7 +11,7 @@ var_dump(filter_list(array())); echo "Done\n"; ?> --EXPECTF-- -array(20) { +array(21) { [0]=> string(3) "int" [1]=> @@ -21,36 +21,38 @@ array(20) { [3]=> string(15) "validate_regexp" [4]=> - string(12) "validate_url" + string(15) "validate_domain" [5]=> - string(14) "validate_email" + string(12) "validate_url" [6]=> - string(11) "validate_ip" + string(14) "validate_email" [7]=> - string(12) "validate_mac" + string(11) "validate_ip" [8]=> - string(6) "string" + string(12) "validate_mac" [9]=> - string(8) "stripped" + string(6) "string" [10]=> - string(7) "encoded" + string(8) "stripped" [11]=> - string(13) "special_chars" + string(7) "encoded" [12]=> - string(18) "full_special_chars" + string(13) "special_chars" [13]=> - string(10) "unsafe_raw" + string(18) "full_special_chars" [14]=> - string(5) "email" + string(10) "unsafe_raw" [15]=> - string(3) "url" + string(5) "email" [16]=> - string(10) "number_int" + string(3) "url" [17]=> - string(12) "number_float" + string(10) "number_int" [18]=> - string(12) "magic_quotes" + string(12) "number_float" [19]=> + string(12) "magic_quotes" + [20]=> string(8) "callback" } |
