Searched refs:rawurlencode (Results 1 – 8 of 8) sorted by relevance
/PHP-7.2/ext/standard/tests/url/ |
H A D | rawurlencode_error_001.phpt | 2 Test rawurlencode() function : error conditions 5 /* Prototype : proto string rawurlencode(string str) 13 echo "*** Testing rawurlencode() : error conditions ***\n"; 16 echo "\n-- Testing rawurlencode() function with Zero arguments --\n"; 17 var_dump( rawurlencode() ); 19 //Test rawurlencode with one more than the expected number of arguments 23 var_dump( rawurlencode($str, $extra_arg) ); 28 *** Testing rawurlencode() : error conditions *** 30 -- Testing rawurlencode() function with Zero arguments -- 32 Warning: rawurlencode() expects exactly 1 parameter, 0 given in %s on line 14 [all …]
|
H A D | rawurlencode_variation_001.phpt | 2 Test rawurlencode() function : usage variations - unexpected type for arg 1. 5 /* Prototype : proto string rawurlencode(string str) 18 echo "*** Testing rawurlencode() : usage variations ***\n"; 77 var_dump( rawurlencode($value) ); 83 *** Testing rawurlencode() : usage variations *** 116 Error: 2 - rawurlencode() expects parameter 1 to be string, array given, %s(74) 121 Error: 2 - rawurlencode() expects parameter 1 to be string, array given, %s(74) 126 Error: 2 - rawurlencode() expects parameter 1 to be string, array given, %s(74) 131 Error: 2 - rawurlencode() expects parameter 1 to be string, array given, %s(74) 136 Error: 2 - rawurlencode() expects parameter 1 to be string, array given, %s(74) [all …]
|
H A D | bug53248.phpt | 2 Bug #53248 (rawurlencode RFC 3986 EBCDIC support) 6 var_dump(rawurlencode('A1_-.~'));
|
/PHP-7.2/ext/standard/ |
H A D | url.h | 46 PHP_FUNCTION(rawurlencode);
|
H A D | url.c | 633 PHP_FUNCTION(rawurlencode) argument
|
H A D | basic_functions.c | 2845 PHP_FE(rawurlencode, arginfo_rawurlencode)
|
/PHP-7.2/tests/strings/ |
H A D | 001.phpt | 94 echo "Testing rawurlencode: "; 95 $encoded = rawurlencode($raw); 215 Testing rawurlencode: passed
|
/PHP-7.2/ext/xmlreader/tests/ |
H A D | 008.phpt | 25 $dtdfile = rawurlencode(dirname(__FILE__)) . '/dtdexample.dtd';
|
Completed in 37 milliseconds