PHP stripslashes() 函数


实例

删除反斜杠:

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. echo stripslashes("Who\'s Bill Gates?");
  6. ?>
  7. </body>
  8. </html>

定义和用法

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

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


语法

  1. stripslashes(string)
参数描述
string必需。规定要检查的字符串。

技术细节

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

分类导航