wpseek.com
WordPress开发者和主题制作者的搜索引擎



stripslashes_deep › WordPress Function

Since2.0.0
已弃用n/a
stripslashes_deep ( $value )
参数:
  • (mixed) $value The value to be stripped.
    Required: Yes
返回:
  • (mixed) Stripped value.
定义在:
文档:

Navigates through an array, object, or scalar, and removes slashes from the values.



源码

function stripslashes_deep( $value ) {
	return map_deep( $value, 'stripslashes_from_strings_only' );
}