PHP stripslashes() 字符串 函数 详解
php基础 2022-06-07 17:02:58小码哥的IT人生shichen
PHP stripslashes() 函数
实例
删除反斜杠:
<?php
echo stripslashes("Who\'s Bill Gates?");
?>
完整实例:
<!DOCTYPE html>
<html>
<body>
<?php
echo stripslashes("Who\'s Bill Gates?");
?>
</body>
</html>
语法
stripslashes(string)
参数 | 描述 |
---|---|
string | 必需。规定要检查的字符串。 |
技术细节
返回值: | 返回已剥离反斜杠的字符串。 |
PHP 版本: | 4+ |