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.
14 lines
345 B
14 lines
345 B
--TEST--
|
|
Test array_multisort() function : usage variation - testing with anonymous array arguments
|
|
--SKIPIF--
|
|
|
|
--FILE--
|
|
<?php
|
|
echo "*** Testing array_multisort() : Testing with anonymous arguments ***\n";
|
|
|
|
var_dump(array_multisort(array(1,3,2,4)));
|
|
|
|
?>
|
|
--EXPECT--
|
|
*** Testing array_multisort() : Testing with anonymous arguments ***
|
|
bool(true)
|
|
|