php-src/ext/standard/tests/array/asort_variation5.phpt

249 lines
4.4 KiB
Plaintext
Raw Normal View History

2007-11-05 16:34:54 +00:00
--TEST--
Test asort() function : usage variations - sort strings
--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 string arrays for $array argument with following flag values
* flag value as default
* SORT_REGULAR - compare items normally
* SORT_STRING - compare items as strings
*/
echo "*** Testing asort() : usage variations ***\n";
$various_arrays = array (
// group of escape sequences
array ("null"=> null, "NULL" => NULL, "\a" => "\a", "\cx" => "\cx", "\e" => "\e",
"\f" => "\f", "\n" =>"\n", "\r" => "\r", "\t" => "\t", "\xhh" => "\xhh",
"\ddd" => "\ddd", "\v" => "\v"
),
// array contains combination of capital/small letters
array ('l' => "lemoN", 'O' => "Orange", 'b' => "banana", 'a' => "apple", 'Te' => "Test",
'T' => "TTTT", 't' => "ttt", 'w' => "ww", 'x' => "x", 'X' => "X", 'o' => "oraNGe",
'B' => "BANANA"
)
);
$flags = array("SORT_REGULAR" => SORT_REGULAR, "SORT_STRING" => SORT_STRING);
$count = 1;
echo "\n-- Testing asort() by supplying various string arrays --\n";
// loop through to test asort() with different arrays
foreach ($various_arrays as $array) {
echo "\n-- Iteration $count --\n";
echo "- With default sort_flag -\n";
$temp_array = $array;
var_dump(asort($temp_array) ); // expecting : bool(true)
var_dump($temp_array);
// loop through $flags array and setting all possible flag values
foreach($flags as $key => $flag){
echo "- Sort_flag = $key -\n";
$temp_array = $array;
var_dump(asort($temp_array, $flag) ); // expecting : bool(true)
var_dump($temp_array);
}
$count++;
}
echo "Done\n";
?>
--EXPECT--
2007-11-05 16:34:54 +00:00
*** Testing asort() : usage variations ***
-- Testing asort() by supplying various string arrays --
-- Iteration 1 --
- With default sort_flag -
bool(true)
array(12) {
[u"null"]=>
NULL
[u"NULL"]=>
NULL
[u" "]=>
unicode(1) " "
[u"
"]=>
unicode(1) "
"
[u" "]=>
unicode(1) " "
[u" "]=>
unicode(1) " "
[u"
"]=>
unicode(1) "
"
[u"\a"]=>
unicode(2) "\a"
[u"\cx"]=>
unicode(3) "\cx"
[u"\ddd"]=>
unicode(4) "\ddd"
[u"\e"]=>
unicode(2) "\e"
[u"\xhh"]=>
unicode(4) "\xhh"
}
- Sort_flag = SORT_REGULAR -
bool(true)
array(12) {
[u"null"]=>
NULL
[u"NULL"]=>
NULL
[u" "]=>
unicode(1) " "
[u"
"]=>
unicode(1) "
"
[u" "]=>
unicode(1) " "
[u" "]=>
unicode(1) " "
[u"
"]=>
unicode(1) "
"
[u"\a"]=>
unicode(2) "\a"
[u"\cx"]=>
unicode(3) "\cx"
[u"\ddd"]=>
unicode(4) "\ddd"
[u"\e"]=>
unicode(2) "\e"
[u"\xhh"]=>
unicode(4) "\xhh"
}
- Sort_flag = SORT_STRING -
bool(true)
array(12) {
[u"null"]=>
NULL
[u"NULL"]=>
NULL
[u" "]=>
unicode(1) " "
[u"
"]=>
unicode(1) "
"
[u" "]=>
unicode(1) " "
[u" "]=>
unicode(1) " "
[u"
"]=>
unicode(1) "
"
[u"\a"]=>
unicode(2) "\a"
[u"\cx"]=>
unicode(3) "\cx"
[u"\ddd"]=>
unicode(4) "\ddd"
[u"\e"]=>
unicode(2) "\e"
[u"\xhh"]=>
unicode(4) "\xhh"
}
-- Iteration 2 --
- With default sort_flag -
bool(true)
array(12) {
[u"B"]=>
unicode(6) "BANANA"
[u"O"]=>
unicode(6) "Orange"
[u"T"]=>
unicode(4) "TTTT"
[u"Te"]=>
unicode(4) "Test"
[u"X"]=>
unicode(1) "X"
[u"a"]=>
unicode(5) "apple"
[u"b"]=>
unicode(6) "banana"
[u"l"]=>
unicode(5) "lemoN"
[u"o"]=>
unicode(6) "oraNGe"
[u"t"]=>
unicode(3) "ttt"
[u"w"]=>
unicode(2) "ww"
[u"x"]=>
unicode(1) "x"
}
- Sort_flag = SORT_REGULAR -
bool(true)
array(12) {
[u"B"]=>
unicode(6) "BANANA"
[u"O"]=>
unicode(6) "Orange"
[u"T"]=>
unicode(4) "TTTT"
[u"Te"]=>
unicode(4) "Test"
[u"X"]=>
unicode(1) "X"
[u"a"]=>
unicode(5) "apple"
[u"b"]=>
unicode(6) "banana"
[u"l"]=>
unicode(5) "lemoN"
[u"o"]=>
unicode(6) "oraNGe"
[u"t"]=>
unicode(3) "ttt"
[u"w"]=>
unicode(2) "ww"
[u"x"]=>
unicode(1) "x"
}
- Sort_flag = SORT_STRING -
bool(true)
array(12) {
[u"B"]=>
unicode(6) "BANANA"
[u"O"]=>
unicode(6) "Orange"
[u"T"]=>
unicode(4) "TTTT"
[u"Te"]=>
unicode(4) "Test"
[u"X"]=>
unicode(1) "X"
[u"a"]=>
unicode(5) "apple"
[u"b"]=>
unicode(6) "banana"
[u"l"]=>
unicode(5) "lemoN"
[u"o"]=>
unicode(6) "oraNGe"
[u"t"]=>
unicode(3) "ttt"
[u"w"]=>
unicode(2) "ww"
[u"x"]=>
unicode(1) "x"
}
Done