PHP stripslashes() 函数
PHP stripslashes() 函数删除由 addslashes() 函数添加的反斜杠
( PHP >= 4 )
函数原型
stripslashes( string )
该函数可用于清理从数据库中或者从 HTML 表单中取回的数据
参数
参数 | 描述 |
---|---|
string | 必需。规定要检查的字符串 |
返回值
返回剥离了反斜杠的字符串
范例
删除反斜杠
<?php echo stripslashes("Who\'s\ Peter\ Griffin?");
运行以上 PHP 范例,输出结果如下
Who's Peter Griffin?