Searched refs:http_build_query (Results 1 – 11 of 11) sorted by relevance
/PHP-8.1/ext/standard/tests/strings/ |
H A D | http_build_query.phpt | 2 http_build_query() function 7 var_dump(http_build_query($array)); 8 var_dump(http_build_query($array, 'foo')); 9 var_dump(http_build_query($array, 'foo', ';'));
|
H A D | bug26817.phpt | 2 Bug #26817 (http_build_query() did not handle private & protected object properties) 16 var_dump(http_build_query($this)); 22 var_dump(http_build_query($obj));
|
H A D | http_build_query_variation1.phpt | 2 Test http_build_query() function: usage variations - first arguments as object 20 echo http_build_query($obj) . PHP_EOL; 21 echo http_build_query(new UrlBuilder());
|
H A D | http_build_query_variation3.phpt | 2 Test http_build_query() function: usage variations - testing four parameter added in PHP 5.4.0 13 echo http_build_query($oDimensional, '', ini_get('arg_separator.output'), PHP_QUERY_RFC1738) . PHP_… 14 echo http_build_query($oDimensional, '', ini_get('arg_separator.output'), PHP_QUERY_RFC3986);
|
H A D | bug26819.phpt | 2 Bug #26819 (http_build_query() crash on empty output) 6 var_dump(http_build_query($a));
|
H A D | bug77608.phpt | 2 Bug #77608: http_build_query doesn't encode "+" in a float number 7 echo http_build_query($a);
|
H A D | http_build_query_variation2.phpt | 2 Test http_build_query() function: usage variations - first arguments as multidimensional array and … 29 echo http_build_query($mDimensional) . PHP_EOL; 30 echo http_build_query($mDimensional, 'prefix_');
|
/PHP-8.1/ext/standard/tests/http/ |
H A D | gh11274.phpt | 31 … => 'Content-type: application/x-www-form-urlencoded', 'content' => http_build_query(['hello' => '… 32 … => 'Content-type: application/x-www-form-urlencoded', 'content' => http_build_query(['hello' => '… 33 … => 'Content-type: application/x-www-form-urlencoded', 'content' => http_build_query(['hello' => '… 34 … => 'Content-type: application/x-www-form-urlencoded', 'content' => http_build_query(['hello' => '…
|
/PHP-8.1/ext/standard/ |
H A D | http.c | 223 PHP_FUNCTION(http_build_query) in PHP_FUNCTION() argument
|
H A D | basic_functions.stub.php | 1298 function http_build_query(array|object $data, string $numeric_prefix = "", ?string $arg_separator =… function
|
H A D | basic_functions_arginfo.h | 2632 ZEND_FUNCTION(http_build_query); 3275 ZEND_FE(http_build_query, arginfo_http_build_query)
|
Completed in 37 milliseconds