1
0
mirror of https://github.com/php/php-src.git synced 2026-04-18 13:31:27 +02:00
Files
archived-php-src/ext/standard/tests/array/natcasesort_variation7.phpt
Nikita Popov ae6f45ad45 var_dump(): Don't skip recursion detection on first level
This is confusing. The current output doesn't make it clear that
we're in fact recursing to the top-level structure.

Closes GH-5171.
2020-02-12 11:25:50 +01:00

53 lines
864 B
PHP

--TEST--
Test natcasesort() function : usage variations - recursive arrays
--FILE--
<?php
/* Prototype : bool natcasesort(array &$array_arg)
* Description: Sort an array using case-insensitive natural sort
* Source code: ext/standard/array.c
*/
/*
* 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