* (optional) arg_separator.output is used to separate arguments, unless this * parameter is specified, and is then used. * @param int $encoding_type * (optional) By default, PHP_QUERY_RFC1738. * * @return string * A URL-encoded string. */ function http_build_query($data, $numeric_prefix = '', $arg_separator = '&', $encoding_type = \PHP_QUERY_RFC1738) { return \http_build_query($data, is_null($numeric_prefix) ? '' : $numeric_prefix, $arg_separator, $encoding_type); } }