説明
バックスラッシュを取り除いた文字列を返します。C言語と同様に
\n
, \r
..., 8進表現, 16進表現を認識します。
パラメータ
string
-
元に戻したい文字列。
戻り値
元に戻した文字列を返します。
例
例1 stripcslashes() の例
<?php
var_dump(stripcslashes('I\'d have a coffee.\nNot a problem.') === "I'd have a coffee.
Not a problem."); // true
?>
+add a note
User Contributed Notes 1 note
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
?>