Mega Code Archive

 
Categories / Php / Strings
 

String stripslashes ( string str ) is the opposite of addslashes( )

<?     $string = "I'm a lumberjack and I'm okay!";     $a = addslashes($string);     print $a;     $b = stripslashes($a);     print $b; ?>