blob: 14ef8d198e6e7c6b6b572fef0eb11533102940d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--TEST--
Test array_multisort() function : usage variation - testing with empty array
--FILE--
<?php
echo "*** Testing array_multisort() : Testing with empty array ***\n";
var_dump(array_multisort(array()));
?>
--EXPECT--
*** Testing array_multisort() : Testing with empty array ***
bool(true)
|