build_query()
build_query(array $params, integer|false $encoding = PHP_QUERY_RFC3986) : string
Build a query string from an array of key value pairs.
This function can use the return value of parse_query() to build a query string. This function does not modify the provided keys when an array is encountered (like http_build_query would).
Parameters
array | $params | Query string parameters. |
integer|false | $encoding | Set to false to not encode, PHP_QUERY_RFC3986 to encode using RFC3986, or PHP_QUERY_RFC1738 to encode using RFC1738. |