For those who are using PECL pecl_http 2, you need to refer to HttpQueryString, which is now implemented under http namespace. Therefore,
<?php new \http\QueryString(); ?>
http_build_str
(PECL pecl_http >= 0.23.0)
http_build_str — Build query string
Descrizione
string http_build_str
( array
$query
[, string $prefix
[, string $arg_separator = ini_get("arg_separator.output")
]] )Opponent to parse_str().
Elenco dei parametri
-
query -
associative array of query string parameters
-
prefix -
top level prefix
-
arg_separator -
argument separator to use (by default the INI setting arg_separator.output will be used, or "&" if neither is set
Valori restituiti
Returns the built query as string on success o FALSE in caso di fallimento.
Vedere anche:
- standard http_build_query() - Generate URL-encoded query string
- http_build_url() - Build a URL
g dot kuizinas at anuary dot com ¶
4 months ago
