Changeset 62497
- Timestamp:
- 06/12/2026 11:42:27 PM (7 hours ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r62421 r62497 1032 1032 * It sets the separator to '&' and uses the _http_build_query() function. 1033 1033 * 1034 * Unlike PHP's native http_build_query(), this function does NOT URL-encode 1035 * the keys or values. Callers are responsible for encoding values beforehand 1036 * with urlencode() or rawurlencode(), or late-escaping the output with 1037 * esc_url() before use. 1038 * 1034 1039 * @since 2.3.0 1035 1040 * 1036 * @see _http_build_query() Used to build the query 1041 * @see _http_build_query() Used to build the query. 1037 1042 * @link https://www.php.net/manual/en/function.http-build-query.php for more on what 1038 1043 * http_build_query() does. 1039 1044 * 1040 * @param array $data URL-encode key/value pairs.1041 * @return string URL-encoded string.1045 * @param array $data Array of key/value pairs to build the query from. 1046 * @return string Query string, without URL encoding applied. 1042 1047 */ 1043 1048 function build_query( $data ) {
Note: See TracChangeset
for help on using the changeset viewer.