wp_kses_stripslashes

函数
wp_kses_stripslashes ( $string )
参数
  • (string) $string String to strip slashes from.
    Required:
返回值
  • (string) Fixed string with quoted slashes.
定义位置
相关方法
wp_kses_attr_parsewp_kses_js_entitieswp_kses_splitstripslashes_deepwp_kses_post
引入
1.0.0
弃用
-

wp_kses_stripslashes: 该函数删除由PHP的magic_quotes_gpc功能添加到字符串中的任何斜线,该功能现在已被弃用。

从引号前面删除斜线。

这个函数将字符序列`””`改为只有`””`。它保留所有其他斜线。`preg_replace(//e)`中的引号需要这个。

function wp_kses_stripslashes( $string ) {
	return preg_replace( '%\\"%', '"', $string );
}

常见问题

FAQs
查看更多 >