rawurlencode_deep( mixed $value )
Navigates through an array, object, or scalar, and raw-encodes the values to be used in a URL.
Description Description
Parameters Parameters
- $value
-
(mixed) (Required) The array or string to be encoded.
Return Return
(mixed) $value The encoded value.
Source Source
File: wp-includes/formatting.php
function rawurlencode_deep( $value ) { return map_deep( $value, 'rawurlencode' ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
3.4.0 | Introduced. |