stripslashes_deep() – Navigates through an array, object, or scalar, and removes slashes from the values.
You appear to be a bot. Output may be restricted
Description
Navigates through an array, object, or scalar, and removes slashes from the values.
Usage
$mixed = stripslashes_deep( $value );
Parameters
- $value
- ( mixed ) required – The value to be stripped.
Returns
mixed Stripped value.
Source
File name: wordpress/wp-includes/formatting.php
Lines:
1 to 3 of 3
function stripslashes_deep( $value ) { return map_deep( $value, 'stripslashes_from_strings_only' ); }