当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP stripcslashes()用法及代码示例


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 stripcslashes() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。