功能
该函数已不被建议使用,可用
wp_slash()
函数代替当前的addslashes_strings_only()
函数。
当且仅当提供的值是一个字符串时,添加一个斜杠。
格式
addslashes_strings_only( mixed $value )
描述
详细描述可参考:wp_slash()
函数。
参数
(mixed) (必须参数)
返回值
(mixed)
源码
代码所在文件:
wp-includes/deprecated.php
相关代码片段:
function addslashes_strings_only( $value ) { return is_string( $value ) ? addslashes( $value ) : $value; }
变更日志:
- 自 WordPress 5.3.0 开始引入;
- 自 WordPress 5.6.0 开始,该函数已不被建议使用,可用
wp_slash()
函数代替。
参考链接:https://developer.wordpress.org/reference/functions/addslashes_strings_only/