PHP 8.4.0 RC4 available for testing

stripcslashes

(PHP 4, PHP 5, PHP 7, PHP 8)

stripcslashes反引用一个使用 addcslashes() 转义的字符串

说明

stripcslashes(string $string): string

返回反转义后的字符串。可识别类似 C 语言的 \n\r,... 八进制以及十六进制的描述。

参数

string

需要反转义的字符串。

返回值

返回反转义后的字符串。

示例

示例 #1 stripcslashes() 示例

<?php

var_dump
(stripcslashes('I\'d have a coffee.\nNot a problem.') === "I'd have a coffee.
Not a problem."
); // true
?>

参见

  • addcslashes() - 以 C 语言风格使用反斜线转义字符串中的字符

添加备注

用户贡献的备注 1 note

up
14
rafayhingoro[at]hotmail[dot]com
7 years ago
stripcslashes does not simply skip the C-style escape sequences \a, \b, \f, \n, \r, \t and \v, but converts them to their actual meaning.

So
<?php
stripcslashes
('\n') == "\n"; //true;

$str = "we are escaping \r\n"; //we are escaping

?>
To Top