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(); ?>
(PECL pecl_http >= 0.23.0)
http_build_str — Construit une URL à partir d'une chaîne de caractères
$query
[, string $prefix
[, string $arg_separator
= ini_get("arg_separator.output")
]] )Construit une requête depuis un tableau de variables de requête. Dans les faits, cette fonction est strictement l'opposée de la fonction parse_str().
query
tableau associatif de paramètres pour la construction de l'URL
prefix
Préfixe de premier niveau
arg_separator
séparateur à utiliser (par défaut, ce sera le contenu de la variable de configuration INI arg_separator.output) ou "&" si rien n'est défini
Retourne l'URL construite sous la forme d'une chaîne de caractères ou FALSE
si une erreur survient.
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(); ?>