stripslashes_deep( mixed $value )
Navigates through an array, object, or scalar, and removes slashes from the values.
Parameters
- $value
-
(Required) The value to be stripped.
Return
(mixed) Stripped value.
Source
File: wp-includes/formatting.php
function stripslashes_deep( $value ) {
return map_deep( $value, 'stripslashes_from_strings_only' );
}
Changelog
Version | Description |
---|---|
WP-2.0.0 | Introduced. |