You appear to be a bot. Output may be restricted
Description
Essentially a copy of WP's build_query but one that doesn't expect pre-urlencoded values.
Usage
$string = Akismet::build_query( $args );
Parameters
- $args
- ( array ) required – An array of key => value pairs
Returns
string A string ready for use as a URL query string.
Source
File name: akismet/class.akismet.php
Lines:
1 to 3 of 3
public static function build_query( $args ) { return _http_build_query( $args, '', '&' ); }