Definition:
function build_query( $data ) {}
Build URL query based on an associative and, or indexed array.
This is a convenient function for easily building url queries. It sets the separator to ‘&’ and uses _http_build_query() function.
Parameters
- array $data: URL-encode key/value pairs.
Return values
returns:URL encoded string
Source code
function build_query( $data ) { return _http_build_query( $data, null, '&', '', false ); }
571
No comments yet... Be the first to leave a reply!