TypePHP 编译器 https://swoole.com/aot/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

53 lines
1.1 KiB

--TEST--
Test array_multisort() function : basic functionality
--SKIPIF--
--FILE--
<?php
echo "*** Testing array_multisort() : basic functionality ***\n";
// Initialise all required variables
$ar1 = array("row1" => 2, "row2" => 1, "row3" => 1);
$ar2 = array("row1" => 2, "row2" => "aa", "row3" => "1");
echo "\n-- Testing array_multisort() function with all normal arguments --\n";
var_dump( array_multisort($ar1, SORT_ASC, SORT_REGULAR, $ar2, SORT_DESC, SORT_STRING) );
var_dump($ar1, $ar2);
echo "\n-- Testing array_multisort() function with one argument --\n";
var_dump( array_multisort($ar2) );
var_dump($ar2);
?>
--EXPECT--
*** Testing array_multisort() : basic functionality ***
-- Testing array_multisort() function with all normal arguments --
bool(true)
array(3) {
["row2"]=>
int(1)
["row3"]=>
int(1)
["row1"]=>
int(2)
}
array(3) {
["row2"]=>
string(2) "aa"
["row3"]=>
string(1) "1"
["row1"]=>
int(2)
}
-- Testing array_multisort() function with one argument --
bool(true)
array(3) {
["row3"]=>
string(1) "1"
["row1"]=>
int(2)
["row2"]=>
string(2) "aa"
}