Lines Matching refs:array
13 $array_arg = array(
14 // array with positive int values
15 /*1*/ array(0, 1, 2, 2147483647 ),
17 // array with negative int values
18 array(-1, -2, -2147483647 ),
20 // array with positive float values
21 /*3*/ array(0.23, 1.34, 0e2, 200e-2, 30e2, 10e0, 2147473648.90),
23 // array with negative float values
24 array(-0.23, -1.34, -200e-2, -30e2, -10e0, -2147473649.80),
26 // array with single quoted and double quoted strings
27 /*5*/ array('one', "123numbers", 'hello\tworld', "hello world\0", '12.34floatnum'),
29 // array with bool values
30 array(true, TRUE, FALSE, false),
32 // array with positive hexa values
33 /*7*/ array(0x123, 0xabc, 0xABC, 0xac, 0xAb1, 0x9fa),
35 // array with negative hexa values
36 array(-0x123, -0xabc, -0xABC, -0xAb1, -0x9fa),
38 // array with positive octal values
39 /*9*/ array(0123, 0234, 034, 00),
41 // array with negative octal values
42 /*10*/ array(-0123, -0234, -034),
46 // looping to test shuffle() with each sub-array in the $array_arg array
52 echo "\nThe output array is:\n";
67 The output array is:
68 array(4) {
82 The output array is:
83 array(3) {
95 The output array is:
96 array(7) {
116 The output array is:
117 array(6) {
135 The output array is:
136 array(5) {
152 The output array is:
153 array(4) {
167 The output array is:
168 array(6) {
186 The output array is:
187 array(5) {
203 The output array is:
204 array(4) {
218 The output array is:
219 array(3) {