Searched refs:http_build_query (Results 1 – 12 of 12) sorted by relevance
/PHP-5.6/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 | http_build_query_error.phpt | 2 Testing error on null parameter 1 of http_build_query() 9 $result = http_build_query(null); 13 Warning: http_build_query(): Parameter 1 expected to be Array or Object. %s value given in %s on l…
|
H A D | http_build_query_variation1.phpt | 2 Test http_build_query() function: usage variations - first arguments as object 7 /* Prototype : string http_build_query ( mixed $query_data [, string $numeric_prefix [, string $ar… 25 echo http_build_query($obj) . PHP_EOL; 26 echo http_build_query(new UrlBuilder());
|
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_variation3.phpt | 2 Test http_build_query() function: usage variations - testing four parameter added in PHP 5.4.0 11 /* Prototype : string http_build_query ( mixed $query_data [, string $numeric_prefix [, string $ar… 22 echo http_build_query($oDimensional, '', ini_get('arg_separator.output'), PHP_QUERY_RFC1738) . PHP_… 23 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 | http_build_query_variation2.phpt | 2 Test http_build_query() function: usage variations - first arguments as multidimensional array and … 7 /* Prototype : string http_build_query ( mixed $query_data [, string $numeric_prefix [, string $ar… 34 echo http_build_query($mDimensional) . PHP_EOL; 35 echo http_build_query($mDimensional, 'prefix_');
|
/PHP-5.6/ext/standard/ |
H A D | php_http.h | 34 PHP_FUNCTION(http_build_query);
|
H A D | http.c | 210 PHP_FUNCTION(http_build_query) in PHP_FUNCTION() argument
|
H A D | basic_functions.c | 2806 PHP_FE(http_build_query, arginfo_http_build_query)
|
/PHP-5.6/ |
H A D | .gitattributes | 73 /ext/standard/tests/strings/http_build_query.phpt -crlf
|
H A D | NEWS | 9454 - Fixed bug #40009 (http_build_query(array()) returns NULL). (Ilia) 9721 - Added optional parameter to http_build_query() to allow specification of 10329 - Fixed bug #36656 (http_build_query generates invalid URIs due to use of
|
Completed in 65 milliseconds