????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.14.133.138 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/array/ |
Upload File : |
--TEST-- Test array_merge and array_walk --INI-- precision=14 --FILE-- <?php require(dirname(__FILE__) . '/data.inc'); /* ** Create sample arrays ** Test alpha, numeric (decimal, hex, octal) and special data ** ** */ /* Helper function to build testing arrays */ function make_nested_array ($depth, $breadth, $function = NULL, $args = array ()) { for ($x = 0; $x < $breadth; ++$x) { if (NULL === $function) { $array = array (0); } else { $array = array (call_user_func_array ($function, $args)); } for ($y = 1; $y < $depth; ++$y) { $array[0] = array ($array[0]); } $temp[$x] = $array; } return $temp; } /* Nested array */ $data2 = make_nested_array (3, 3); $data = array_merge($data, $data2); var_dump ($data); function echo_kv ($value, $key) { var_dump ($key); var_dump ($value); } echo " -- Testing array_walk() -- \n"; array_walk ($data, 'echo_kv'); ?> --EXPECT-- array(11) { [0]=> string(3) "PHP" [1]=> string(27) "PHP: Hypertext Preprocessor" [2]=> string(4) "Test" ["test"]=> int(27) [3]=> string(4) "test" [4]=> array(2) { [0]=> string(6) "banana" [1]=> string(6) "orange" } [5]=> string(6) "monkey" [6]=> float(-0.33333333333333) [7]=> array(1) { [0]=> array(1) { [0]=> array(1) { [0]=> int(0) } } } [8]=> array(1) { [0]=> array(1) { [0]=> array(1) { [0]=> int(0) } } } [9]=> array(1) { [0]=> array(1) { [0]=> array(1) { [0]=> int(0) } } } } -- Testing array_walk() -- int(0) string(3) "PHP" int(1) string(27) "PHP: Hypertext Preprocessor" int(2) string(4) "Test" string(4) "test" int(27) int(3) string(4) "test" int(4) array(2) { [0]=> string(6) "banana" [1]=> string(6) "orange" } int(5) string(6) "monkey" int(6) float(-0.33333333333333) int(7) array(1) { [0]=> array(1) { [0]=> array(1) { [0]=> int(0) } } } int(8) array(1) { [0]=> array(1) { [0]=> array(1) { [0]=> int(0) } } } int(9) array(1) { [0]=> array(1) { [0]=> array(1) { [0]=> int(0) } } }