????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.17.61.107 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_walk() function : basic functionality - associative array --FILE-- <?php /* Prototype : bool array_walk(array $input, string $funcname [, mixed $userdata]) * Description: Apply a user function to every member of an array * Source code: ext/standard/array.c */ echo "*** Testing array_walk() : basic functionality ***\n"; // associative array $fruits = array("d" => "lemon", "a" => "orange", "b" => "banana", "c" => "apple"); // User defined callback functions /* Prototype : test_alter(mixed $item, mixed $key, string $prefix) * Parameters : item - value in key/value pair * key - key in key/value pair * prefix - string to be added * Description : alters the array values by appending prefix string */ function test_alter(&$item, $key, $prefix) { // dump the arguments to check that they are passed // with proper type var_dump($item); // value var_dump($key); // key var_dump($prefix); // additional argument passed to callback function echo "\n"; // new line to separate the output between each element } /* Prototype : test_print(mixed $item, mixed $key) * Parameters : item - value in key/value pair * key - key in key/value pair * Description : prints the array values with keys */ function test_print($item, $key) { // dump the arguments to check that they are passed // with proper type var_dump($item); // value var_dump($key); // key echo "\n"; // new line to separate the output between each element } echo "-- Using array_walk with default parameters to show array contents --\n"; var_dump(array_walk($fruits, 'test_print')); echo "-- Using array_walk with one optional parameter to modify contents --\n"; var_dump (array_walk($fruits, 'test_alter', 'fruit')); echo "-- Using array_walk with default parameters to show modified array contents --\n"; var_dump (array_walk($fruits, 'test_print')); echo "Done"; ?> --EXPECT-- *** Testing array_walk() : basic functionality *** -- Using array_walk with default parameters to show array contents -- string(5) "lemon" string(1) "d" string(6) "orange" string(1) "a" string(6) "banana" string(1) "b" string(5) "apple" string(1) "c" bool(true) -- Using array_walk with one optional parameter to modify contents -- string(5) "lemon" string(1) "d" string(5) "fruit" string(6) "orange" string(1) "a" string(5) "fruit" string(6) "banana" string(1) "b" string(5) "fruit" string(5) "apple" string(1) "c" string(5) "fruit" bool(true) -- Using array_walk with default parameters to show modified array contents -- string(5) "lemon" string(1) "d" string(6) "orange" string(1) "a" string(6) "banana" string(1) "b" string(5) "apple" string(1) "c" bool(true) Done