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 — Construir un string de consulta
$query
[, string $prefix
[, string $arg_separator
= ini_get("arg_separator.output")
]] )Construye un string de consulta desde un array de variables de consulta. Prácticamente, esta función es la opuesta de parse_str().
query
Array asociativo de parámetros del string de consulta
prefix
Prefijo de nivel superior
arg_separator
Separador de argumentos (por omisión, se usará el de la directiva INI arg_separator.output, o "&" si no se hubiera establecido).
Devuelve la consulta generada en forma de string o FALSE
en caso de error.
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(); ?>