import zend standard tests
[hiphop-php.git] / hphp / test / zend / good / ext-standard-strings / stripslashes_basic.php.expectf
blob499d0ca4f071bbecd07575d28ba5abd3d34c4c91
1 *** Testing stripslashes() : basic functionality ***
2 string(31) "The string after addslashes is:"
3 string(16) "How\'s everybody"
4 string(33) "The string after stripslashes is:"
5 string(15) "How's everybody"
6 string(31) "The string after addslashes is:"
7 string(17) "Are you \"JOHN\"?"
8 string(33) "The string after stripslashes is:"
9 string(15) "Are you "JOHN"?"
10 string(31) "The string after addslashes is:"
11 string(21) "c:\\php\\stripslashes"
12 string(33) "The string after stripslashes is:"
13 string(19) "c:\php\stripslashes"
14 string(31) "The string after addslashes is:"
15 string(21) "c:\\php\\stripslashes"
16 string(33) "The string after stripslashes is:"
17 string(19) "c:\php\stripslashes"
18 string(31) "The string after addslashes is:"
19 string(12) "hello\0world"
20 string(33) "The string after stripslashes is:"
21 string(11) "hello\0world"
22 Done