stripcslashes() 是 PHP 的预定义函数。它用于删除反斜杠并清理从数据库或 HTML 表单中检索到的数据。它返回一个去掉反斜杠的字符串。
当我们需要删除反斜杠时,这个函数 stripcslashes() 很重要。
用法:
string stripcslashes ( string $str );
参数 | 描述 | 必需/可选 |
---|---|---|
String | 用于指定要检查的字符串 | required |
例子1
<?php
$str="Hello PHP!";
echo "Your String is:".$str;
echo "<br>";
echo "By using stripcslashes() Function".stripcslashes($str);
?>
输出:
Hello PHP!
例子2
<?php
$string="Hello, we areLearning PHP from javaTpoint.";
echo "Before using 'stripcslashes()' Function:".$string;
echo "<br>";
echo "By using 'stripcslashes()' Function:".stripcslashes($string);
?>
输出:
Before using 'stripcslashes()' Function:Hello, we areLearning PHP from javaTpoint. By using 'stripcslashes()' Function:Hello, we areLearning PHP from javaTpoint.
参考:
http://php.net/manual/en/function.stripcslashes.php相关用法
- PHP stripslashes()用法及代码示例
- PHP stripos()用法及代码示例
- PHP strip_tags()用法及代码示例
- PHP string rtrim()用法及代码示例
- PHP string printf()用法及代码示例
- PHP string ord()用法及代码示例
- PHP string join()用法及代码示例
- PHP string sha1()用法及代码示例
- PHP string setlocale()用法及代码示例
- PHP string sha1_file()用法及代码示例
- PHP string md5()用法及代码示例
- PHP string ltrim()用法及代码示例
- PHP string str_repeat()用法及代码示例
- PHP string lcfirst()用法及代码示例
- PHP string str_shuffle()用法及代码示例
- PHP string similar_text()用法及代码示例
- PHP string crypt()用法及代码示例
- PHP string str_ireplace()用法及代码示例
- PHP stristr()用法及代码示例
注:本文由纯净天空筛选整理自 PHP stripcslashes() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。