addslashes_strings_only

函数


addslashes_strings_only ( $value )
参数
  • (mixed)
    $value
    Required:
返回值
  • (mixed)
相关
  • wp_slash()
定义位置
  • wp-includes/deprecated.php
    , line 4123
引入
5.3.0
弃用
5.6.0

Adds slashes only if the provided value is a string.

function addslashes_strings_only( $value ) {
	return is_string( $value ) ? addslashes( $value ) : $value;
}