PHP stripslashes() 函数
PHP stripslashes() 函数
定义和用法
stripslashes() 函数删除由 addslashes() 函数添加的反斜杠。
提示:该函数可用于清理从数据库中或者从 HTML 表单中取回的数据。
语法
stripslashes(string)
参数 | 描述 |
---|---|
string | 必需。规定要检查的字符串。 |
技术细节
返回值: | 返回剥离了反斜杠的字符串。 |
---|---|
PHP 版本: | 4+ |
PHP String 参考手册
相关文章
- PHP 简介
- PHP echo 和 print 语句
- PHP EOF(heredoc) 使用说明
- PHP 常量
- PHP 面向对象
- PHP $_POST 变量
- PHP Cookie
- PHP 发送电子邮件
- PHP Secure E-mails
- PHP array_fill() 函数
- PHP array_intersect_ukey() 函数
- PHP array_map() 函数
- PHP array_shift() 函数
- PHP array_sum() 函数
- PHP array_udiff_uassoc() 函数
- PHP each() 函数
- PHP sizeof() 函数
- PHP Libxml 函数
- PHP Mail 函数
- PHP 杂项 函数