Home >php教程 >php手册 >php stripcslashes() 函数删除由 addcslashes() 函数添加的反斜杠

php stripcslashes() 函数删除由 addcslashes() 函数添加的反斜杠

WBOY
WBOYOriginal
2016-06-01 09:45:141418browse

定义和用法

stripcslashes() 函数删除由 addcslashes() 函数添加的反斜杠。

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

 

语法

<code class="language-php">stripcslashes(string)</code>
参数 描述
string 必需。规定要检查的字符串。

 

返回值

返回值: 返回非转义的字符串。
PHP 版本: 4+

 

实例:

<code class="language-php"><?php //删除 "World!" 前面的反斜杠
echo stripslashes("Hello \World!");
?></code>

在线运行

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn