(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
。
g dot kuizinas at anuary dot com (2013-02-12 01:51:46)
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(); ?>