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