php-src/ext/standard/tests/array/natcasesort_variation4.phpt

92 lines
1.6 KiB
Plaintext
Raw Normal View History

2008-02-19 10:53:10 +00:00
--TEST--
Test natcasesort() function : usage variations - different string types
2011-12-12 13:56:42 +00:00
--SKIPIF--
<?php
if (substr(PHP_OS, 0, 3) == 'WIN') {
die("skip Output tested contains chars that are not shown the same on windows concole (ESC and co)");
}
2008-02-19 10:53:10 +00:00
--FILE--
<?php
/* Prototype : bool natcasesort(array &$array_arg)
* Description: Sort an array using case-insensitive natural sort
* Source code: ext/standard/array.c
*/
/*
* Pass arrays of string data to see how natcasesort() re-orders the array
*/
echo "*** Testing natcasesort() : usage variation ***\n";
$inputs = array (
// group of escape sequences
array(null, NULL, "\a", "\cx", "\e", "\f", "\n", "\t", "\xhh", "\ddd", "\v"),
// array contains combination of capital/small letters
array("lemoN", "Orange", "banana", "apple", "Test", "TTTT", "ttt", "ww", "x", "X", "oraNGe", "BANANA")
);
foreach ($inputs as $array_arg) {
var_dump( natcasesort($array_arg) );
var_dump($array_arg);
}
echo "Done";
?>
--EXPECTF--
*** Testing natcasesort() : usage variation ***
bool(true)
array(11) {
[0]=>
NULL
[1]=>
NULL
2015-01-14 09:22:58 +00:00
[5]=>
string(1) " "
2008-02-19 10:53:10 +00:00
[6]=>
string(1) "
"
[7]=>
string(1) " "
2015-01-14 09:22:58 +00:00
[10]=>
string(1) " "
2011-12-01 14:14:30 +00:00
[4]=>
string(1) ""
2008-02-19 10:53:10 +00:00
[2]=>
string(2) "\a"
[3]=>
string(3) "\cx"
[9]=>
string(4) "\ddd"
[8]=>
string(4) "\xhh"
}
bool(true)
array(12) {
[3]=>
string(5) "apple"
[2]=>
string(6) "banana"
2015-01-14 09:22:58 +00:00
[11]=>
string(6) "BANANA"
2008-02-19 10:53:10 +00:00
[0]=>
string(5) "lemoN"
[1]=>
string(6) "Orange"
2015-01-14 09:22:58 +00:00
[10]=>
string(6) "oraNGe"
2008-02-19 10:53:10 +00:00
[4]=>
string(4) "Test"
[6]=>
string(3) "ttt"
[5]=>
string(4) "TTTT"
[7]=>
string(2) "ww"
[8]=>
string(1) "x"
[9]=>
string(1) "X"
}
2011-12-01 14:14:30 +00:00
Done