_http_build_query
- %1$s is private and should not be used in themes or plugins directly.
_http_build_query ( $data, $prefix = null, $sep = null, $key = '', $urlencode = true )
Access:Parameters:- (array|object) data An array or object of data. Converted to array.
- (string) prefix Optional. Numeric index. If set, start parameter numbering with it. Default null.
- (string) sep Optional. Argument separator; defaults to 'arg_separator.output'. Default null.
- (string) key Optional. Used to prefix key name. Default empty string.
- (bool) urlencode Optional. Whether to use urlencode() in the result. Default true.
See:Returns:- (string) The query string.
Defined at: - Introduced in WordPress: 3.2.0
- Deprecated in WordPress: —
Description
From php.net (modified by Mark Jaquith to behave like the native PHP5 function).