Home
last modified time | relevance | path

Searched refs:two (Results 51 – 75 of 743) sorted by relevance

12345678910>>...30

/PHP-5.6/ext/standard/tests/array/
H A Darray_pad_variation7.phpt2 Test array_pad() function : usage variations - two dimensional array for 'input' argument
11 * Passing two dimensional array to $input argument and testing whether
22 array("one" => 1, "two" => 2)
65 ["two"]=>
98 ["two"]=>
H A Darray_unique_variation2.phpt59 /*9*/ array(1 => "one", 2 => "two", 2 => "two"), // explicit numeric keys, string values
60 array("one" => 1, "two" => 2, "1" => 1 ), // string keys & numeric values
62 array( "one" => "ten", "two" => "twenty", "10" => "ten"), // string key/value
63 array("one" => 1, 2 => "two", 4 => "four"), //mixed
159 %unicode|string%(3) "two"
165 [%b|u%"two"]=>
181 [%b|u%"two"]=>
189 %unicode|string%(3) "two"
H A Dsizeof_error.phpt18 echo "-- Testing sizeof() function with more than two arguments under COUNT_NORMAL mode --\n";
22 echo "-- Testing sizeof() function with more than two arguments under COUNT_RECURSIVE mode --\n";
33 -- Testing sizeof() function with more than two arguments under COUNT_NORMAL mode --
37 -- Testing sizeof() function with more than two arguments under COUNT_RECURSIVE mode --
H A Darray_chunk_basic1.phpt25 array(1 => 'one', 2 => "two", 3 => "three"),
28 array(1 => 'one','two', 3 => 'three', 4, "five" => 5)
107 string(3) "two"
123 string(3) "two"
H A Darray_flip_variation5.phpt21 $input = array("key" => 1, "two" => 'TWO', 'three' => 3, 'key' => "FOUR");
33 $input = array('one' => 1, 'two' => 2, 3 => 1, "index" => 1);
56 string(3) "two"
74 string(3) "two"
H A Dend_variation2.phpt12 * 1. a two-dimensional array
21 echo "\n-- Pass a two-dimensional array as \$array_arg --\n";
31 -- Pass a two-dimensional array as $array_arg --
H A Darray_diff_basic.phpt27 $array_string1 = array ('one', 'two', 'three', 'four');
35 $array_assoc_int1 = array ('one' => 1, 'two' => 2, 'three' => 3, 'four' => 4);
43 $array_assoc_str1 = array ('one' => 'un', 'two' => 'deux', 'three' => 'trois', 'four' => 'quatre');
75 string(3) "two"
87 ["two"]=>
100 ["two"]=>
H A Darray_map_variation14.phpt19 $arr2 = array("one", "two");
64 string(3) "two"
84 string(3) "two"
105 string(3) "two"
123 Warning: array_map() expects parameter 1 to be a valid callback, array must have exactly two member…
H A Darray_combine_variation3.phpt59 /*9*/ array(1 => "one", 2 => "two", 3 => "three"), // explicit numeric keys, string values
60 array("one" => 1, "two" => 2, "three" => 3 ), // string keys & numeric values
62 array( "one" => "ten", "two" => "twenty", "three" => "thirty"), // string key/value
63 array("one" => 1, 2 => "two", 4 => "four"), //mixed
73 /*19*/ array("One" => 1, "two" => 2, "One" => 10, "two" => 20, "three" => 3)
189 ["two"]=>
190 string(3) "two"
227 ["two"]=>
228 string(3) "two"
H A Darray_intersect_assoc_variation3.phpt61 /*9*/ array(1 => "one", 2 => "two", 3 => "three"), // explicit numeric keys, string values
62 array("one" => 1, "two" => 2, "three" => 3 ), // string keys & numeric values
64 array( "one" => "ten", "two" => "twenty", "three" => "thirty"), // string key/value
65 array("one" => 1, 2 => "two", 4 => "four"), //mixed
75 /*19*/ array("One" => 1, "two" => 2, "One" => 10, "two" => 20, "three" => 3)
84 "one" => "ten", 4 => "four", "two" => 2,
173 ["two"]=>
177 ["two"]=>
H A Darray_intersect_assoc_variation4.phpt54 "one" => "ten", 4 => "four", "two" => 2, 6 => "six",
70 /*9*/ array(1 => "one", 2 => "two", 6 => "six"), // explicit numeric keys, string values
71 array("one" => 1, "two" => 2, "three" => 3 ), // string keys & numeric values
73 array( "one" => "ten", "two" => "twenty", "three" => "thirty"), // string key/value
74 array("one" => 1, 2 => "two", 4 => "four"), //mixed
84 /*19*/ array("One" => 1, "two" => 2, "One" => 10, "two" => 20, "three" => 3)
184 ["two"]=>
188 ["two"]=>
H A Darray_merge_variation5.phpt18 $arr1 = array('zero', 'one', 'two', 'three');
35 string(3) "two"
57 string(3) "two"
H A Dnext_variation2.phpt12 * 1. a two-dimensional array
21 echo "\n-- Pass a two-dimensional array as \$array_arg --\n";
32 -- Pass a two-dimensional array as $array_arg --
H A Darray_intersect_basic.phpt21 $arr_associative = array("one" => 1, "two" => 2);
63 ["two"]=>
69 ["two"]=>
77 ["two"]=>
H A Darray_merge_variation6.phpt18 $arr1 = array('zero' => 'zero', 'one' => 'un', 'two' => 'deux');
34 ["two"]=>
50 ["two"]=>
H A Darray_slice_variation8.phpt12 * 1. a two-dimensional array as $input argument
20 echo "\n-- Slice a two-dimensional array --\n";
32 -- Slice a two-dimensional array --
H A Darray_values_variation7.phpt18 $input = array(3 => 'three', 2 => 'two', 1 => 'one', 0 => 'zero');
37 string(3) "two"
49 string(3) "two"
H A Dend_basic.phpt16 $array = array('zero', 'one', 200 => 'two');
39 string(3) "two"
42 200 => two
H A Dprev_variation2.phpt12 * 1. a two-dimensional array
25 echo "\n-- Pass a two-dimensional array as \$array_arg --\n";
36 -- Pass a two-dimensional array as $array_arg --
/PHP-5.6/Zend/tests/
H A Dbug38808.phpt8 $b = array(1=>'one', 2=>'two');
17 two
/PHP-5.6/tests/lang/
H A Dforeach_with_references_001.phpt6 $arr = array(1 => "one", 2 => "two", 3 => "three");
24 [2] => two
/PHP-5.6/ext/standard/tests/strings/
H A Dexplode_variation5.phpt12 $str = 'one||two||three||four';
32 string(16) "two||three||four"
40 string(3) "two"
/PHP-5.6/ext/soap/tests/schema/
H A Dschema009.phpt13 test_schema($schema,'type="tns:testType"',"one two");
18 …encoding/"><SOAP-ENV:Body><ns1:test><testParam xsi:type="ns1:testType">one two</testParam></ns1:te…
19 string(7) "one two"
H A Dschema010.phpt13 test_schema($schema,'type="tns:testType"',array("one","two"));
18 …encoding/"><SOAP-ENV:Body><ns1:test><testParam xsi:type="ns1:testType">one two</testParam></ns1:te…
19 string(7) "one two"
/PHP-5.6/ext/spl/tests/
H A DSplFixedArray_setsize_001.phpt9 $array[1] = 'two';
21 %string|unicode%(3) "two"

Completed in 30 milliseconds

12345678910>>...30