Willkommen bei WordPress. Dies ist dein erster Beitrag. Bearbeite oder lösche ihn und beginne mit dem Schreiben!
Hallo Welt!
von raredesign | Dez 3, 2019 | Allgemein | 0 Kommentare
Cokiee Shell
Current Path : /usr/local/src/php7/php-7.0.5/ext/standard/tests/array/ |
Current File : //usr/local/src/php7/php-7.0.5/ext/standard/tests/array/rsort_variation4.phpt |
--TEST-- Test rsort() function : usage variations - referenced variables --FILE-- <?php /* Prototype : bool rsort(array &$array_arg [, int $sort_flags]) * Description: Sort an array in reverse order * Source code: ext/standard/array.c */ /* * Test behaviour of rsort() when: * 1. passed an array of referenced variables * 2. $array_arg is a reference to another array * 3. $array_arg is passed by reference */ echo "*** Testing rsort() : variation ***\n"; $value1 = 100; $value2 = 33; $value3 = 555; // an array containing integer references $unsorted_numerics = array( &$value1 , &$value2, &$value3); echo "\n-- 'flag' value is defualt --\n"; $temp_array = $unsorted_numerics; var_dump( rsort($temp_array) ); var_dump( $temp_array); echo "\n-- 'flag' = SORT_REGULAR --\n"; $temp_array = &$unsorted_numerics; var_dump( rsort($temp_array, SORT_REGULAR) ); var_dump( $temp_array); echo "Done"; ?> --EXPECTF-- *** Testing rsort() : variation *** -- 'flag' value is defualt -- bool(true) array(3) { [0]=> &int(555) [1]=> &int(100) [2]=> &int(33) } -- 'flag' = SORT_REGULAR -- bool(true) array(3) { [0]=> &int(555) [1]=> &int(100) [2]=> &int(33) } Done
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare