Home
last modified time | relevance | path

Searched refs:http_build_query (Results 1 – 21 of 21) sorted by relevance

/php-src/ext/standard/tests/http/http_build_query/
H A Dhttp_build_query_object_just_stringable.phpt2 http_build_query() function with object that is just stringable (GH-10229)
13 var_dump(http_build_query(['hello', $o]));
14 var_dump(http_build_query($o));
15 var_dump(http_build_query(['hello', $o], numeric_prefix: 'prefix_'));
16 var_dump(http_build_query($o, numeric_prefix: 'prefix_'));
H A Dhttp_build_query.phpt2 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 Dbug26817.phpt2 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 Dhttp_build_query_variation1.phpt2 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 Dhttp_build_query_variation3.phpt2 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 Dhttp_build_query_with_resource.phpt2 http_build_query() function with resource in array
5 var_dump(http_build_query([STDIN]));
H A Dhttp_build_query_with_null.phpt2 http_build_query() function with null in array
5 var_dump(http_build_query([null]));
H A Dbug26819.phpt2 Bug #26819 (http_build_query() crash on empty output)
6 var_dump(http_build_query($a));
H A Dhttp_build_query_object_empty.phpt2 http_build_query() function with empty object
8 var_dump(http_build_query($o));
H A Dhttp_build_query_with_references.phpt2 http_build_query() function with reference in array
8 var_dump(http_build_query([$ref]));
H A Dbug77608.phpt2 Bug #77608: http_build_query doesn't encode "+" in a float number
7 echo http_build_query($a);
H A Dhttp_build_query_object_recursif.phpt2 http_build_query() function with recursif object
14 var_dump(http_build_query($o));
H A Dhttp_build_query_object_basic.phpt2 http_build_query() function with object
14 var_dump(http_build_query($o));
H A Dgh12745.phpt2 Bug GH-12745 (http_build_query() default null argument for $arg_separator is implicitly coerced to …
11 var_dump(http_build_query(
H A Dhttp_build_query_object_key_val_stringable.phpt2 http_build_query() function with recursif object
17 var_dump(http_build_query($o));
H A Dhttp_build_query_object_nested.phpt2 http_build_query() function with nested object
17 var_dump(http_build_query($o));
H A Dhttp_build_query_variation2.phpt2 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-src/ext/standard/tests/http/
H A Dgh11274.phpt31 … => '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-src/ext/standard/
H A Dhttp.c220 PHP_FUNCTION(http_build_query) in PHP_FUNCTION() argument
H A Dbasic_functions.stub.php3026 function http_build_query(array|object $data, string $numeric_prefix = "", ?string $arg_separator =…
H A Dbasic_functions_arginfo.h2719 ZEND_FUNCTION(http_build_query);
3358 ZEND_FE(http_build_query, arginfo_http_build_query)

Completed in 53 milliseconds