定义和用法

stripslashes() 函数删除由addslashes 函数添加的反斜杠。

提示:该函数可用于清理从数据库中或者从 HTML 表单中取回的数据。


语法

stripslashes(string)

参数描述
string必需。规定要检查的字符串。

技术细节

返回值:返回剥离了反斜杠的字符串。
PHP 版本:4+

demo

echo stripslashes("this is demo . & my name is \'Jerry\' .;");

##输出
this is demo . & my name is 'Jerry' .;