Searched refs:rawurldecode (Results 1 – 7 of 7) sorted by relevance
/PHP-5.3/ext/standard/tests/url/ |
H A D | rawurldecode_error_001.phpt | 2 Test rawurldecode() function : error conditions - wrong number of args 5 /* Prototype : proto string rawurldecode(string str) 13 echo "*** Testing rawurldecode() : error conditions ***\n"; 16 echo "\n-- Testing rawurldecode() function with Zero arguments --\n"; 17 var_dump( rawurldecode() ); 19 //Test rawurldecode with one more than the expected number of arguments 23 var_dump( rawurldecode($str, $extra_arg) ); 28 *** Testing rawurldecode() : error conditions *** 30 -- Testing rawurldecode() function with Zero arguments -- 32 Warning: rawurldecode() expects exactly 1 parameter, 0 given in %s on line 14 [all …]
|
H A D | rawurldecode_variation_001.phpt | 2 Test rawurldecode() function : usage variations - unexpected type for arg 1. 5 /* Prototype : proto string rawurldecode(string str) 18 echo "*** Testing rawurldecode() : usage variations ***\n"; 77 var_dump( rawurldecode($value) ); 83 *** Testing rawurldecode() : usage variations *** 115 Error: 2 - rawurldecode() expects parameter 1 to be string, array given, %s(74) 119 Error: 2 - rawurldecode() expects parameter 1 to be string, array given, %s(74) 123 Error: 2 - rawurldecode() expects parameter 1 to be string, array given, %s(74) 127 Error: 2 - rawurldecode() expects parameter 1 to be string, array given, %s(74) 131 Error: 2 - rawurldecode() expects parameter 1 to be string, array given, %s(74) [all …]
|
H A D | bug53248.phpt | 7 var_dump(rawurldecode('%41%31%5F%2D%2E%7E'));
|
/PHP-5.3/ext/standard/ |
H A D | url.h | 46 PHP_FUNCTION(rawurldecode);
|
H A D | url.c | 648 PHP_FUNCTION(rawurldecode) argument
|
H A D | basic_functions.c | 2808 PHP_FE(rawurldecode, arginfo_rawurldecode)
|
/PHP-5.3/tests/strings/ |
H A D | 001.phpt | 106 echo "Testing rawurldecode: "; 107 $decoded = rawurldecode($correct); 202 Testing rawurldecode: passed
|
Completed in 23 milliseconds