On this page
urldecode_deep( mixed $value ): mixed
Navigates through an array, object, or scalar, and decodes URL-encoded values
Parameters
$valuemixed Required-
The array or string to be decoded.
Return
mixed The decoded value.
Source
File: wp-includes/formatting.php. View all references
function urldecode_deep( $value ) {
return map_deep( $value, 'urldecode' );
}
Related
Uses
| Uses | Description |
|---|---|
| map_deep() wp-includes/formatting.php | Maps a function to all non-iterable elements of an array or an object. |
Changelog
| Version | Description |
|---|---|
| 4.4.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/urldecode_deep