Strings Php

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