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 — クエリ文字列を組み立てる
$query
[, string $prefix
[, string $arg_separator
= ini_get("arg_separator.output")
]] )クエリ変数の配列から、クエリ文字列を組み立てます。 要するに、この関数は parse_str() の逆の動作をします。
query
クエリ文字列パラメータの連想配列。
prefix
トップレベルのプレフィックス。
arg_separator
引数の区切りとして使用する文字 (デフォルトでは、INI 設定 arg_separator.output が使用されます。 これも設定されていない場合は "&" が使用されます)。
成功した場合に組み立てたクエリ文字列、
失敗した場合に FALSE
を返します。
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(); ?>