PHP/String/stripslashes — различия между версиями

Материал из Web эксперт
Перейти к: навигация, поиск
м (1 версия)
 
м (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;
?>