/PHP-8.2/ext/standard/tests/array/ |
H A D | array_slice_variation5.phpt | 38 ["ten"]=> 52 ["ten"]=> 66 ["ten"]=> 78 ["ten"]=> 88 ["ten"]=> 96 ["ten"]=> 102 ["ten"]=> 116 ["ten"]=> 128 ["ten"]=> 138 ["ten"]=> [all …]
|
H A D | array_slice_variation6.phpt | 11 $input = array ('one' => 1, 2 => 'two', 'three', 9 => 'nine', 'ten' => 10); 101 ["ten"]=> 113 ["ten"]=> 125 ["ten"]=> 137 ["ten"]=>
|
H A D | array_values_basic.phpt | 13 $input = array('zero', 'one', 'two', 'three' => 3, 10 => 'ten'); 32 string(3) "ten"
|
H A D | array_intersect_assoc_variation3.phpt | 58 array( "one" => "ten", "two" => "twenty", "three" => "thirty"), // string key/value 78 "one" => "ten", 4 => "four", "two" => 2, 182 string(3) "ten" 186 string(3) "ten"
|
H A D | array_intersect_assoc_variation4.phpt | 48 "one" => "ten", 4 => "four", "two" => 2, 6 => "six", 67 array( "one" => "ten", "two" => "twenty", "three" => "thirty"), // string key/value 193 string(3) "ten" 197 string(3) "ten"
|
H A D | array_intersect_variation3.phpt | 58 array( "one" => "ten", "two" => "twenty", "three" => "thirty"), // string key/value 78 "one" => "ten", 4 => "four", "two" => 2, 2 => "two", 232 string(3) "ten" 236 string(3) "ten"
|
H A D | array_intersect_variation4.phpt | 48 "one" => "ten", 4 => "four", "two" => 2, 2 => "two", 67 array( "one" => "ten", "two" => "twenty", "three" => "thirty"), // string key/value 247 string(3) "ten" 251 string(3) "ten"
|
H A D | array_unique_variation2.phpt | 57 array( "one" => "ten", "two" => "twenty", "10" => "ten"), // string key/value 175 string(3) "ten"
|
H A D | array_combine_variation3.phpt | 56 array( "one" => "ten", "two" => "twenty", "three" => "thirty"), // string key/value 210 ["ten"]=> 211 string(3) "ten"
|
H A D | array_map_variation3.phpt | 30 array( "one" => "ten", "two" => "twenty", "three" => "thirty"), // string key/value 145 string(3) "ten"
|
H A D | array_reverse_variation3.phpt | 45 array( "one" => "ten", "two" => "twenty", "three" => "thirty"), // string key/value 357 string(3) "ten" 366 string(3) "ten" 375 string(3) "ten"
|
H A D | array_unshift_variation3.phpt | 29 array( "one" => "ten", "two" => "twenty", "three" => "thirty"), // string key/value 340 string(3) "ten" 355 string(3) "ten"
|
H A D | array_intersect_variation9.phpt | 22 array("ten" => 10, "twenty" => 20.00, "thirty" => 30) 124 ["ten"]=> 215 ["ten"]=>
|
H A D | array_pad_variation6.phpt | 59 array( "one" => "ten", "two" => "twenty", "three" => "thirty"), // string key/value 438 string(3) "ten" 458 string(3) "ten"
|
/PHP-8.2/tests/lang/ |
H A D | bug23384.phpt | 9 static $arr2 = array(TEN => 'ten'); 10 static $arr = array(Foo::HUN => 'ten'); 24 [100] => ten 28 [10] => ten
|
/PHP-8.2/ext/date/tests/ |
H A D | bug52342.phpt | 8 $from->setISODate(2010, 28, 1); //Montag der 28ten Woche 2010
|
/PHP-8.2/ext/standard/tests/strings/ |
H A D | join_variation3.phpt | 24 array( "one" => "ten", "two" => "twenty", "three" => "thirty"), // string key/value 78 string(23) "ten], [twenty], [thirty"
|
/PHP-8.2/ext/standard/tests/general_functions/ |
H A D | array_is_list.phpt | 19 test_is_list("ten", range(0, 10)); 77 ten: true
|
/PHP-8.2/ext/mbstring/tests/ |
H A D | sjis_mobile_encodings.phpt | 210 function shiftJISEncode($ku, $ten) { 212 $ten -= 0x21; 221 if ($ten < 63) 222 return $sjis . chr($ten + 0x40); 224 return $sjis . chr($ten - 63 + 0x80); 226 return $sjis . chr($ten + 0x9F); 231 for ($ten = 0x21; $ten <= $escCodeMaxTen[$char]; $ten++) { 232 $sjis = shiftJISEncode($ku, $ten); 234 $bytes = "\x1B\$" . $char . chr($ten);
|
H A D | mb_substr_variation4.phpt | 20 * Loop through integers as multiples of ten for $offset argument
|
H A D | mb_substr_variation5.phpt | 21 * Loop through integers as multiples of ten for $offset argument
|
H A D | mb_substr_variation6.phpt | 20 * Loop through integers as multiples of ten for $offset argument
|
H A D | mb_substr_variation7.phpt | 21 * Loop through integers as multiples of ten for $offset argument
|
H A D | mb_strripos_variation5_Bug45923.phpt | 24 * Loop through integers as multiples of ten for $offset argument
|
/PHP-8.2/ext/gd/libgd/ |
H A D | gdft.c | 257 int ku, ten; in gdTcl_UtfToUniChar() local 260 ten = (str[1] & 0x7F) - 0x20; in gdTcl_UtfToUniChar() 261 if ((ku < 1 || ku > 92) || (ten < 1 || ten > 94)) { in gdTcl_UtfToUniChar() 266 *chPtr = (Tcl_UniChar) UnicodeTbl[ku - 1][ten - 1]; in gdTcl_UtfToUniChar()
|