This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
Curl::format_get( string $url, array|object $data )
Format a URL given GET data
Parameters
- $url
-
(Required) Original URL.
- $data
-
(Required) Data to build query using, see https://www.php.net/http_build_query
Return
(string) URL with data
Source
File: wp-includes/Requests/src/Transport/Curl.php
private static function format_get($url, $data) {
if (!empty($data)) {
$query = '';
$url_parts = parse_url($url);
if (empty($url_parts['query'])) {
$url_parts['query'] = '';
} else {
$query = $url_parts['query'];
}
$query .= '&' . http_build_query($data, '', '&');
$query = trim($query, '&');
if (empty($url_parts['query'])) {
$url .= '?' . $query;
} else {
$url = str_replace($url_parts['query'], $query, $url);
}
}
return $url;
}