PHP 字符串 stripcslashes()函数

PHP 字符串 stripcslashes()函数

stripcslashes()是PHP的预定义函数。它用于删除反斜杠并清理从数据库或HTML表单中检索到的数据。它返回一个去掉反斜杠的字符串。

当需要删除反斜杠时,这个stripcslashes()函数非常重要。

语法

string stripcslashes ( string $str );
参数 描述 必需/可选
string 用于指定要检查的字符串 必需

示例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

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程