/PHP-7.3/ext/standard/tests/array/ |
H A D | range_errors.phpt | 2 Test range() function (errors) 46 Warning: range(): step exceeds the specified range in %s on line %d 49 Warning: range(): step exceeds the specified range in %s on line %d 54 Warning: range(): step exceeds the specified range in %s on line %d 57 Warning: range(): step exceeds the specified range in %s on line %d 62 Warning: range(): step exceeds the specified range in %s on line %d 67 Warning: range(): step exceeds the specified range in %s on line %d 80 Warning: range(): step exceeds the specified range in %s on line %d 86 Warning: range(): step exceeds the specified range in %s on line %d 96 Warning: range(): step exceeds the specified range in %s on line %d [all …]
|
H A D | array_slice_variation1.phpt | 6 var_dump(array_slice(range(1, 3), 0, NULL, 1)); 7 var_dump(array_slice(range(1, 3), 0, 0, 1)); 8 var_dump(array_slice(range(1, 3), 0, NULL)); 9 var_dump(array_slice(range(1, 3), 0, 0)); 11 var_dump(array_slice(range(1, 3), -1, 0)); 12 var_dump(array_slice(range(1, 3), -1, 0, 1)); 13 var_dump(array_slice(range(1, 3), -1, NULL)); 14 var_dump(array_slice(range(1, 3), -1, NULL, 1)); 18 var_dump(array_slice(range(1, 3), 0, $a)); 19 var_dump(array_slice(range(1, 3), 0, $a));
|
H A D | range_variation1.phpt | 2 Test range() function (variation-2) 12 echo "\n*** Testing max/outof range values ***\n"; 13 /*var_dump( range("a", "z", 255) ); 14 var_dump( range("z", "a", 255) ); */ 15 var_dump( range(2147483645, 2147483646) ); 16 var_dump( range(2147483646, 2147483648) ); 17 var_dump( range(-2147483647, -2147483646) ); 18 var_dump( range(-2147483648, -2147483647) ); 19 var_dump( range(-2147483649, -2147483647) ); 24 *** Testing max/outof range values ***
|
H A D | range_variation1_64bit.phpt | 2 Test range() function (variation-2) 12 echo "\n*** Testing max/outof range values ***\n"; 13 /*var_dump( range("a", "z", 255) ); 14 var_dump( range("z", "a", 255) ); */ 15 var_dump( range(2147483645, 2147483646) ); 16 var_dump( range(2147483646, 2147483648) ); 17 var_dump( range(-2147483647, -2147483646) ); 18 var_dump( range(-2147483648, -2147483647) ); 19 var_dump( range(-2147483649, -2147483647) ); 24 *** Testing max/outof range values ***
|
H A D | bug41121.phpt | 2 Bug #41121 (range() overflow handling for large numbers on 32bit machines) 11 var_dump(range(2147483400, 2147483600, 100)); 12 var_dump( range(2147483646, 2147483648, 1 ) ); 13 var_dump( range(2147483646, 2147483657, 1 ) ); 14 var_dump( range(2147483630, 2147483646, 5 ) ); 17 var_dump( range(-2147483645, -2147483648, 1 ) ); 18 var_dump( range(-2147483645, -2147483649, 1 ) ); 19 var_dump( range(-2147483630, -2147483646, 5 ) ); 22 var_dump(range(2147483647, 2147483645, 1 )); 23 var_dump(range(2147483648, 2147483645, 1 ));
|
H A D | bug61967.phpt | 6 range(1, 5), 7 range(1, 5), 8 range(1, 5), 9 range(1, 5), 10 range(1, 5),
|
H A D | range.phpt | 2 Test range() function 12 var_dump( range(1, 10) ); 14 var_dump( range(10, 1) ); 18 var_dump( range("1", "10") ); 20 var_dump( range("10", "1") ); 24 var_dump( range("a", "z") ); 26 var_dump( range("z", "a") ); 29 var_dump( range(5, 5) ); 30 var_dump( range("q", "q") ); 33 var_dump( range(5.1, 10.1) ); [all …]
|
H A D | range_bug71197.phpt | 2 Bug #71197 (range function produces another 2 segfaults with long integers) 5 range(PHP_INT_MIN, PHP_INT_MIN + 513, .01); 6 range(PHP_INT_MIN + 513, PHP_INT_MIN, .01);
|
H A D | range_bug71132.phpt | 2 Bug #71132 (range function produces 2 segfaults with long integers) 5 var_dump(count(range(PHP_INT_MIN + 513, PHP_INT_MIN))); 6 var_dump(count(range(PHP_INT_MIN, PHP_INT_MIN + 513)));
|
H A D | range_bug70239_0.phpt | 5 range(0, pow(2.0, 100000000)); 9 Warning: range(): Invalid range supplied: start=0 end=inf in %srange_bug70239_0.php on line %d
|
H A D | range_bug70239_1.phpt | 5 range(pow(2.0, 100000000), pow(2.0, 100000000) + 1); 9 Warning: range(): Invalid range supplied: start=inf end=inf in %srange_bug70239_1.php on line %d
|
H A D | bug24220.phpt | 2 Bug #24220 (range() numeric string handling) 5 var_dump(range("2003", "2004")); 6 var_dump(range("a", "z")); 7 var_dump(range("1", "10"));
|
H A D | range_bug70239_2.phpt | 5 var_dump(range(0, PHP_INT_MAX)); 9 Warning: range(): The supplied range exceeds the maximum array size: start=0 end=%d in %srange_bug7…
|
H A D | range_bug70239_3.phpt | 5 var_dump(range(PHP_INT_MIN, 0)); 9 Warning: range(): The supplied range exceeds the maximum array size: start=-%d end=0 in %srange_bug…
|
H A D | usort_variation11.phpt | 10 $range = array(2, 4, 8, 16, 32, 64, 128); 12 foreach ($range as $r) { 13 $backup = $array = range(0, $r);
|
/PHP-7.3/main/streams/ |
H A D | mmap.c | 25 php_stream_mmap_range range; in _php_stream_mmap_range() local 27 range.offset = offset; in _php_stream_mmap_range() 28 range.length = length; in _php_stream_mmap_range() 29 range.mode = mode; in _php_stream_mmap_range() 30 range.mapped = NULL; in _php_stream_mmap_range() 38 … == php_stream_set_option(stream, PHP_STREAM_OPTION_MMAP_API, PHP_STREAM_MMAP_MAP_RANGE, &range)) { in _php_stream_mmap_range() 40 *mapped_len = range.length; in _php_stream_mmap_range() 42 return range.mapped; in _php_stream_mmap_range()
|
/PHP-7.3/ext/standard/tests/math/ |
H A D | mt_rand_basic.phpt | 84 PASSED: range min = 0 max = 2147483647 87 PASSED: range min = 10 max = 100 88 PASSED: range min = 100 max = 1000 89 PASSED: range min = 10 max = 19 91 PASSED: range min = 16 max = 65536 92 PASSED: range min = 256 max = 448 95 PASSED range min = 1 max = 100 96 PASSED range min = 0 max = 100 97 PASSED range min = 0 max = 100 98 PASSED range min = 10 max = 100 [all …]
|
H A D | rand_basic.phpt | 84 PASSED: range min = 0 max = %i 87 PASSED: range min = 10 max = 100 88 PASSED: range min = 100 max = 1000 89 PASSED: range min = 10 max = 19 91 PASSED: range min = 16 max = 65536 92 PASSED: range min = 256 max = 448 95 PASSED range min = 1 max = 100 96 PASSED range min = 0 max = 100 97 PASSED range min = 0 max = 100 98 PASSED range min = 10 max = 100 [all …]
|
/PHP-7.3/ext/date/tests/ |
H A D | mktime-3.phpt | 19 echo "out of range\n"; 31 Y: 69 - out of range 36 Y: 105 - out of range 37 Y: 1900 - out of range 38 Y: 1901 - out of range 46 Y: 69 - out of range 51 Y: 105 - out of range 52 Y: 1900 - out of range 53 Y: 1901 - out of range
|
H A D | gmdate_variation12.phpt | 2 Test gmdate() function : usage variation - Valid and invalid range of timestamp. 17 echo "\n-- Testing gmdate() function with minimum range of timestamp --\n"; 21 echo "\n-- Testing gmdate() function with less than the range of timestamp --\n"; 24 echo "\n-- Testing gmdate() function with maximum range of timestamp --\n"; 28 echo "\n-- Testing gmdate() function with greater than the range of timestamp --\n"; 37 -- Testing gmdate\(\) function with minimum range of timestamp -- 40 -- Testing gmdate\(\) function with less than the range of timestamp -- 43 -- Testing gmdate\(\) function with maximum range of timestamp -- 46 -- Testing gmdate\(\) function with greater than the range of timestamp --
|
/PHP-7.3/Zend/tests/generators/ |
H A D | generator_with_arg_unpacking.phpt | 5 (function() { yield; })(...range(1, 16384)); 6 call_user_func_array(function() { yield; }, range(1, 16384)); 7 $g = (function() { yield; })(...range(1, 16384)); 8 $g = call_user_func_array(function() { yield; }, range(1, 16384));
|
/PHP-7.3/ext/standard/tests/url/ |
H A D | parse_url_error_002.phpt | 2 Test parse_url() function: url component specifier out of range 11 echo "*** Testing parse_url() : error conditions: url component specifier out of range ***\n"; 14 echo "--> Below range:"; 17 echo "\n\n--> Above range:"; 23 *** Testing parse_url() : error conditions: url component specifier out of range *** 24 --> Below range:array(8) { 44 --> Above range:
|
/PHP-7.3/ext/imap/tests/ |
H A D | imap_fetch_overview_variation2.phpt | 124 Sequence out of range 139 Sequence out of range 145 Sequence out of range 151 Sequence out of range 157 Sequence out of range 160 Sequence out of range 163 Sequence out of range 178 Sequence out of range 193 Sequence out of range 196 Sequence out of range [all …]
|
/PHP-7.3/ext/filter/tests/ |
H A D | filter_ipv4_rfc6890.phpt | 2 Bug #71745 FILTER_FLAG_NO_RES_RANGE does not cover whole 127.0.0.0/8 range 22 foreach ($privateRanges as $key => $range) { 23 list($min, $max) = $range; 76 foreach ($reservedRanges as $key => $range) { 77 list($min, $max) = $range;
|
/PHP-7.3/ext/mbstring/ucgendat/ |
H A D | ucgendat.php | 161 foreach ($ranges as $range) { 163 $lastRange = $range; 168 $lastRange = $range; 173 $range->start, $range->end 357 $range = explode('..', $fields[0]); 358 if (count($range) == 2) { 359 $data->addPropRange(intval($range[0], 16), intval($range[1], 16), $property); 360 } else if (count($range) == 1) { 424 foreach ($ranges as $range) { 425 $values[] = $range->start; [all …]
|