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/asort_variation6.phpt |
--TEST-- Test asort() function : usage variations - sort hexadecimal values --FILE-- <?php /* Prototype : bool asort ( array &$array [, int $asort_flags] ) * Description: Sort an array and maintain index association. Elements will be arranged from lowest to highest when this function has completed. * Source code: ext/standard/array.c */ /* * testing asort() by providing different hexa-decimal array for $array argument with following flag values * flag value as defualt * SORT_REGULAR - compare items normally * SORT_NUMERIC - compare items numerically */ echo "*** Testing asort() : usage variations ***\n"; // an array contains unsorted hexadecimal values // There are multiple keys which are duplicate and the later should be picked $unsorted_hex_array = array ( 0x1AB => 0x1AB, 0xFFF => 0xFFF, 0xF => 0xF, 0xFF => 0xFF, 0x2AA => 0x2AA, 0xBB => 0xBB, 0x1ab => 0x1ab, 0xff => 0xff, -0xff => -0xFF, 0 => 0, -0x2aa => -0x2aa ); echo "\n-- Testing asort() by supplying hexadecimal value array, 'flag' value is defualt --\n"; $temp_array = $unsorted_hex_array; var_dump(asort($temp_array) ); // expecting : bool(true) var_dump($temp_array); echo "\n-- Testing asort() by supplying hexadecimal value array, 'flag' value is SORT_REGULAR --\n"; $temp_array = $unsorted_hex_array; var_dump(asort($temp_array, SORT_REGULAR) ); // expecting : bool(true) var_dump($temp_array); echo "\n-- Testing asort() by supplying hexadecimal value array, 'flag' value is SORT_NUMERIC --\n"; $temp_array = $unsorted_hex_array; var_dump(asort($temp_array, SORT_NUMERIC) ); // expecting : bool(true) var_dump($temp_array); echo "Done\n"; ?> --EXPECTF-- *** Testing asort() : usage variations *** -- Testing asort() by supplying hexadecimal value array, 'flag' value is defualt -- bool(true) array(9) { [-682]=> int(-682) [-255]=> int(-255) [0]=> int(0) [15]=> int(15) [187]=> int(187) [255]=> int(255) [427]=> int(427) [682]=> int(682) [4095]=> int(4095) } -- Testing asort() by supplying hexadecimal value array, 'flag' value is SORT_REGULAR -- bool(true) array(9) { [-682]=> int(-682) [-255]=> int(-255) [0]=> int(0) [15]=> int(15) [187]=> int(187) [255]=> int(255) [427]=> int(427) [682]=> int(682) [4095]=> int(4095) } -- Testing asort() by supplying hexadecimal value array, 'flag' value is SORT_NUMERIC -- bool(true) array(9) { [-682]=> int(-682) [-255]=> int(-255) [0]=> int(0) [15]=> int(15) [187]=> int(187) [255]=> int(255) [427]=> int(427) [682]=> int(682) [4095]=> int(4095) } Done
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare