summaryrefslogtreecommitdiff
path: root/ext/standard/tests/array/natcasesort_variation4.phpt
blob: d7dee1e8e782137f1d102e578338364283fa6b16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
--TEST--
Test natcasesort() function : usage variations - different string types
--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)");
}
--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
  [5]=>
  string(1) ""
  [6]=>
  string(1) "
"
  [7]=>
  string(1) "	"
  [10]=>
  string(1) ""
  [4]=>
  string(1) ""
  [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"
  [11]=>
  string(6) "BANANA"
  [0]=>
  string(5) "lemoN"
  [1]=>
  string(6) "Orange"
  [10]=>
  string(6) "oraNGe"
  [4]=>
  string(4) "Test"
  [6]=>
  string(3) "ttt"
  [5]=>
  string(4) "TTTT"
  [7]=>
  string(2) "ww"
  [8]=>
  string(1) "x"
  [9]=>
  string(1) "X"
}
Done