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.
 
 

47 lines
704 B

--TEST--
Test natcasesort() function : usage variations - recursive arrays
--FILE--
<?php
/*
* Pass natcasesort() an infinitely recursive array to test how it is re-ordered
*/
echo "*** Testing natcasesort() : usage variations ***\n";
$array = array (1, 3.00, 'zero', '2');
$array[] = &$array;
var_dump($array);
var_dump(@natcasesort($array));
var_dump($array);
echo "Done";
?>
--EXPECT--
*** Testing natcasesort() : usage variations ***
array(5) {
[0]=>
int(1)
[1]=>
float(3)
[2]=>
string(4) "zero"
[3]=>
string(1) "2"
[4]=>
*RECURSION*
}
bool(true)
array(5) {
[0]=>
int(1)
[3]=>
string(1) "2"
[1]=>
float(3)
[4]=>
*RECURSION*
[2]=>
string(4) "zero"
}
Done