????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.222.183.102 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 - double dimensional arrays --FILE-- <?php /* Prototype : string stripslashes ( string $str ) * Description: Returns an un-quoted string * Source code: ext/standard/string.c */ /* * Test stripslashes() with double dimensional arrays */ echo "*** Testing stripslashes() : with double dimensional arrays ***\n"; // initialising the string array $str_array = array( array("", array()), array("", array("")), array("f\\'oo", "b\\'ar", array("fo\\'o", "b\\'ar")), array("f\\'oo", "b\\'ar", array("")), array("f\\'oo", "b\\'ar", array("fo\\'o", "b\\'ar", array(""))), array("f\\'oo", "b\\'ar", array("fo\\'o", "b\\'ar", array("fo\\'o", "b\\'ar"))) ); function stripslashes_deep($value) { $value = is_array($value) ? array_map('stripslashes_deep', $value) : stripslashes($value); return $value; } $count = 1; // looping to test for all strings in $str_array foreach( $str_array as $arr ) { echo "\n-- Iteration $count --\n"; var_dump( stripslashes_deep($arr) ); $count ++; } echo "Done\n"; ?> --EXPECTF-- *** Testing stripslashes() : with double dimensional arrays *** -- Iteration 1 -- array(2) { [0]=> string(0) "" [1]=> array(0) { } } -- Iteration 2 -- array(2) { [0]=> string(0) "" [1]=> array(1) { [0]=> string(0) "" } } -- Iteration 3 -- array(3) { [0]=> string(4) "f'oo" [1]=> string(4) "b'ar" [2]=> array(2) { [0]=> string(4) "fo'o" [1]=> string(4) "b'ar" } } -- Iteration 4 -- array(3) { [0]=> string(4) "f'oo" [1]=> string(4) "b'ar" [2]=> array(1) { [0]=> string(0) "" } } -- Iteration 5 -- array(3) { [0]=> string(4) "f'oo" [1]=> string(4) "b'ar" [2]=> array(3) { [0]=> string(4) "fo'o" [1]=> string(4) "b'ar" [2]=> array(1) { [0]=> string(0) "" } } } -- Iteration 6 -- array(3) { [0]=> string(4) "f'oo" [1]=> string(4) "b'ar" [2]=> array(3) { [0]=> string(4) "fo'o" [1]=> string(4) "b'ar" [2]=> array(2) { [0]=> string(4) "fo'o" [1]=> string(4) "b'ar" } } } Done