????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.142.237.71 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/ext/standard/tests/strings/ |
Upload File : |
--TEST-- Test stripslashes() function : usage variations - un-quote strings quoted with addslashes() --FILE-- <?php /* Prototype : string stripslashes ( string $str ) * Description: Returns an un-quoted string * Source code: ext/standard/string.c */ /* * Test stripslashes() with various strings containing characters thats can be backslashed. * First adding slashes using addslashes() and then removing the slashes using stripslashes() */ echo "*** Testing stripslashes() : with various strings containing backslashed characters ***\n"; // initialising a heredoc string $heredoc_string = <<<EOT This is line 1 of 'heredoc' string This is line 2 of "heredoc" string EOT; $heredoc_null_string =<<<EOT EOT; $heredoc_string_only_backslash =<<<EOT \ EOT; $heredoc_string_only_single_quote =<<<EOT ' EOT; $heredoc_string_only_double_quote =<<<EOT " EOT; // initialising the string array $str_array = array( // string without any characters that can be backslashed 'Hello world', // string with single quotes "how're you doing?", "don't disturb u'r neighbours", "don't disturb u'r neighbours''", '', '\'', "'", $heredoc_string_only_single_quote, // string with double quotes 'he said, "he will be on leave"', 'he said, ""he will be on leave"', '"""PHP"""', "", "\"", '"', "hello\"", $heredoc_string_only_double_quote, // string with backslash characters 'Is your name Ram\Krishna?', '\\0.0.0.0', 'c:\php\testcase\stripslashes', '\\', $heredoc_string_only_backslash, // string with nul characters 'hello'.chr(0).'world', chr(0).'hello'.chr(0), chr(0).chr(0).'hello', chr(0), // mixed strings "'\\0.0.0.0'", "'\\0.0.0.0'".chr(0), chr(0)."'c:\php\'", '"\\0.0.0.0"', '"c:\php\"'.chr(0)."'", '"hello"'."'world'".chr(0).'//', // string with hexadecimal number "0xABCDEF0123456789", "\x00", '!@#$%&*@$%#&/;:,<>', "hello\x00world", // heredoc strings $heredoc_string, $heredoc_null_string ); $count = 1; // looping to test for all strings in $str_array foreach( $str_array as $str ) { echo "\n-- Iteration $count --\n"; $str_addslashes = addslashes($str); var_dump("The string after addslashes is:", $str_addslashes); $str_stripslashes = stripslashes($str_addslashes); var_dump("The string after stripslashes is:", $str_stripslashes); if( strcmp($str, $str_stripslashes) != 0 ) echo "\nError: Original string and string from stripslash() donot match\n"; $count ++; } echo "Done\n"; ?> --EXPECTF-- *** Testing stripslashes() : with various strings containing backslashed characters *** -- Iteration 1 -- string(31) "The string after addslashes is:" string(11) "Hello world" string(33) "The string after stripslashes is:" string(11) "Hello world" -- Iteration 2 -- string(31) "The string after addslashes is:" string(18) "how\'re you doing?" string(33) "The string after stripslashes is:" string(17) "how're you doing?" -- Iteration 3 -- string(31) "The string after addslashes is:" string(30) "don\'t disturb u\'r neighbours" string(33) "The string after stripslashes is:" string(28) "don't disturb u'r neighbours" -- Iteration 4 -- string(31) "The string after addslashes is:" string(34) "don\'t disturb u\'r neighbours\'\'" string(33) "The string after stripslashes is:" string(30) "don't disturb u'r neighbours''" -- Iteration 5 -- string(31) "The string after addslashes is:" string(0) "" string(33) "The string after stripslashes is:" string(0) "" -- Iteration 6 -- string(31) "The string after addslashes is:" string(2) "\'" string(33) "The string after stripslashes is:" string(1) "'" -- Iteration 7 -- string(31) "The string after addslashes is:" string(2) "\'" string(33) "The string after stripslashes is:" string(1) "'" -- Iteration 8 -- string(31) "The string after addslashes is:" string(2) "\'" string(33) "The string after stripslashes is:" string(1) "'" -- Iteration 9 -- string(31) "The string after addslashes is:" string(32) "he said, \"he will be on leave\"" string(33) "The string after stripslashes is:" string(30) "he said, "he will be on leave"" -- Iteration 10 -- string(31) "The string after addslashes is:" string(34) "he said, \"\"he will be on leave\"" string(33) "The string after stripslashes is:" string(31) "he said, ""he will be on leave"" -- Iteration 11 -- string(31) "The string after addslashes is:" string(15) "\"\"\"PHP\"\"\"" string(33) "The string after stripslashes is:" string(9) """"PHP"""" -- Iteration 12 -- string(31) "The string after addslashes is:" string(0) "" string(33) "The string after stripslashes is:" string(0) "" -- Iteration 13 -- string(31) "The string after addslashes is:" string(2) "\"" string(33) "The string after stripslashes is:" string(1) """ -- Iteration 14 -- string(31) "The string after addslashes is:" string(2) "\"" string(33) "The string after stripslashes is:" string(1) """ -- Iteration 15 -- string(31) "The string after addslashes is:" string(7) "hello\"" string(33) "The string after stripslashes is:" string(6) "hello"" -- Iteration 16 -- string(31) "The string after addslashes is:" string(2) "\"" string(33) "The string after stripslashes is:" string(1) """ -- Iteration 17 -- string(31) "The string after addslashes is:" string(26) "Is your name Ram\\Krishna?" string(33) "The string after stripslashes is:" string(25) "Is your name Ram\Krishna?" -- Iteration 18 -- string(31) "The string after addslashes is:" string(9) "\\0.0.0.0" string(33) "The string after stripslashes is:" string(8) "\0.0.0.0" -- Iteration 19 -- string(31) "The string after addslashes is:" string(31) "c:\\php\\testcase\\stripslashes" string(33) "The string after stripslashes is:" string(28) "c:\php\testcase\stripslashes" -- Iteration 20 -- string(31) "The string after addslashes is:" string(2) "\\" string(33) "The string after stripslashes is:" string(1) "\" -- Iteration 21 -- string(31) "The string after addslashes is:" string(2) "\\" string(33) "The string after stripslashes is:" string(1) "\" -- Iteration 22 -- string(31) "The string after addslashes is:" string(12) "hello\0world" string(33) "The string after stripslashes is:" string(11) "hello world" -- Iteration 23 -- string(31) "The string after addslashes is:" string(9) "\0hello\0" string(33) "The string after stripslashes is:" string(7) "