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.
15 lines
314 B
15 lines
314 B
--TEST--
|
|
array_multisort() is stable
|
|
--FILE--
|
|
<?php
|
|
|
|
// Something of a dummy example where 0 and '0' are used as equal elements.
|
|
|
|
$ary1 = array_fill(0, 100, 0);
|
|
$origAry2 = $ary2 = array_merge(...array_fill(0, 50, [0, '0']));
|
|
array_multisort($ary1, $ary2);
|
|
var_dump($ary2 === $origAry2);
|
|
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|
|
|