PHP/String/stripslashes — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 07:07, 26 мая 2010
string stripslashes ( string str ) is the opposite of addslashes( ): it removes one set of \-escapes from a string.
<?
$string = "I"m a lumberjack and I"m okay!";
$a = addslashes($string);
print $a;
$b = stripslashes($a);
print $b;
?>