urldecode_deep( mixed $value )
Navigates through an array, object, or scalar, and decodes URL-encoded values
Parameters
- $value
-
(Required) The array or string to be decoded.
Return
(mixed) $value The decoded value.
Source
File: wp-includes/formatting.php
function urldecode_deep( $value ) {
return map_deep( $value, 'urldecode' );
}
Changelog
Version | Description |
---|---|
WP-4.4.0 | Introduced. |