php-8.0.30-src/ext/standard/tests/array/asort_stability.phpt

13 lines
166 B
PHP

--TEST--
asort() is stable
--FILE--
<?php
$array = $origArray = array_fill(0, 1000, null);
asort($array);
var_dump($array === $origArray);
?>
--EXPECT--
bool(true)