Lines Matching refs:stripslashes
2 Test stripslashes() function : basic functionality
5 /* Prototype : string stripslashes ( string $str )
11 * Testing stripslashes() with quoted strings
14 echo "*** Testing stripslashes() : basic functionality ***\n";
19 'c:\php\stripslashes', // string with backslashes
20 'c:\\php\\stripslashes', // string with double backslashes
28 $str_stripslashes = stripslashes($str_addslashes);
29 var_dump("The string after stripslashes is:", $str_stripslashes);
31 echo "\nError: Original string and string after stripslashes donot match\n";
37 *** Testing stripslashes() : basic functionality ***
40 string(33) "The string after stripslashes is:"
44 string(33) "The string after stripslashes is:"
47 string(21) "c:\\php\\stripslashes"
48 string(33) "The string after stripslashes is:"
49 string(19) "c:\php\stripslashes"
51 string(21) "c:\\php\\stripslashes"
52 string(33) "The string after stripslashes is:"
53 string(19) "c:\php\stripslashes"
56 string(33) "The string after stripslashes is:"