addslashes_strings_only( mixed $value )
Adds slashes only if the provided value is a string.
Description
Parameters
- $value
-
(mixed) (Required)
Return
(mixed)
Source
File: wp-includes/formatting.php
function addslashes_strings_only( $value ) { return is_string( $value ) ? addslashes( $value ) : $value; }
Changelog
Version | Description |
---|---|
5.3.0 | Introduced. |