1
0
mirror of https://github.com/php/php-src.git synced 2026-04-19 14:01:01 +02:00
Files
archived-php-src/ext/standard/tests/array/natcasesort_variation9.phpt
Nikita Popov e12b9df05d Make sorting stable
Make user-exposed sorts stable, by storing the position of elements
in the original array, and using those positions as a fallback
comparison criterion. The base sort is still hybrid q/insert.

The use of true/false comparison functions is deprecated (but still
supported) and should be replaced by -1/0/1 comparison functions,
driven by the <=> operator.

RFC: https://wiki.php.net/rfc/stable_sorting

Closes GH-5236.
2020-06-25 10:49:34 +02:00

105 lines
1.6 KiB
PHP
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
--TEST--
Test natcasesort() function : usage variations - mixed array
--FILE--
<?php
/*
* Pass an array containing sub-arrays, ints, floats, strings, boolean, null
* and escape characters to test how natcasesort() re-orders it
*/
echo "*** Testing natcasesort() : usage variation ***\n";
$mixed_values = array (
array(),
array( array(33, -5, 6),
array(11),
array(22, -55),
array()
),
-4, "4", 4.00, "b", "5", -2, -2.0, -2.98989, "-.9", "True", "",
NULL, "ab", "abcd", 0.0, -0, "abcd\x00abcd\x00abcd", '', true, false
);
// suppress errors as is generating a lot of "array to string" notices
var_dump( @natcasesort($mixed_values) );
var_dump($mixed_values);
echo "Done";
?>
--EXPECT--
*** Testing natcasesort() : usage variation ***
bool(true)
array(22) {
[12]=>
string(0) ""
[13]=>
NULL
[19]=>
string(0) ""
[21]=>
bool(false)
[10]=>
string(3) "-.9"
[7]=>
int(-2)
[8]=>
float(-2)
[9]=>
float(-2.98989)
[2]=>
int(-4)
[16]=>
float(0)
[17]=>
int(0)
[20]=>
bool(true)
[3]=>
string(1) "4"
[4]=>
float(4)
[6]=>
string(1) "5"
[14]=>
string(2) "ab"
[15]=>
string(4) "abcd"
[18]=>
string(14) "abcdabcdabcd"
[0]=>
array(0) {
}
[1]=>
array(4) {
[0]=>
array(3) {
[0]=>
int(33)
[1]=>
int(-5)
[2]=>
int(6)
}
[1]=>
array(1) {
[0]=>
int(11)
}
[2]=>
array(2) {
[0]=>
int(22)
[1]=>
int(-55)
}
[3]=>
array(0) {
}
}
[5]=>
string(1) "b"
[11]=>
string(4) "True"
}
Done