/PHP-8.4/ext/mbstring/ucgendat/ |
H A D | uctest.php | 43 $codes[] = intval($strCode, 16); 76 $code = intval($fields[0], 16); 77 $upperCase = intval($fields[12], 16); 78 $lowerCase = intval($fields[13], 16); 79 $titleCase = intval($fields[14], 16); 101 $code = intval($fields[0], 16); 104 $foldCode = intval($fields[2], 16); 117 $code = intval($fields[0], 16);
|
H A D | ucgendat.php | 238 $code = intval($fields[0], 16); 249 $nextCode = intval($nextFields[0], 16); 265 $upperCase = intval($fields[12], 16); 266 $lowerCase = intval($fields[13], 16); 267 $titleCase = intval($fields[14], 16) ?: $upperCase; 283 $codes[] = intval($strCode, 16); 294 $code = intval($fields[0], 16); 302 $foldCode = intval($fields[2], 16); 349 $code = intval($fields[0], 16); 389 $data->addPropRange(intval($range[0], 16), intval($range[1], 16), $property); [all …]
|
/PHP-8.4/ext/random/tests/01_functions/ |
H A D | mt_rand_basic.phpt | 41 if (!is_int($res) || $res < intval($min[$x]) || $res > intval($max[$x])) { 42 … echo "FAILED: res = ", $res, " min = ", intval($min[$x]), " max = ", intval($max[$x]), "\n"; 48 echo "PASSED: range min = ", intval($min[$x]), " max = ", intval($max[$x]), "\n";
|
H A D | rand_basic.phpt | 41 if (!is_int($res) || $res < intval($min[$x]) || $res > intval($max[$x])) { 42 … echo "FAILED: res = ", $res, " min = ", intval($min[$x]), " max = ", intval($max[$x]), "\n"; 48 echo "PASSED: range min = ", intval($min[$x]), " max = ", intval($max[$x]), "\n";
|
/PHP-8.4/ext/standard/tests/general_functions/ |
H A D | intval.phpt | 2 Test intval() function 9 echo "*** Testing intval() with valid integer values ***\n"; 32 /* loop to check that intval() recognizes different 37 var_dump( intval($value) ); 43 var_dump( intval($value, 10) ); 49 var_dump( intval($value, 16) ); 54 var_dump( intval($value, 8) ); 57 echo "\n*** Testing intval() on non integer types ***\n"; 142 var_dump( intval($type) ); 150 *** Testing intval() with valid integer values *** [all …]
|
H A D | intval_binary_prefix.phpt | 2 Test intval() function with "0b" string prefix 37 intval($input, 0) 45 intval($input, 2) 53 intval($input) 61 intval($input, 0)
|
H A D | intval_variation1.phpt | 2 Test intval() function : usage variation 5 echo "*** Testing intval() : usage variation ***\n"; 92 var_dump( intval($value, $base) ); 97 *** Testing intval() : usage variation ***
|
/PHP-8.4/Zend/tests/ |
H A D | int_conversion_exponents.phpt | 8 var_dump(intval("1.2345e9")); 9 var_dump(intval("-1.2345e9")); 19 var_dump(intval(" 1.2345e9 abc")); 20 var_dump(intval(" -1.2345e9 abc"));
|
/PHP-8.4/ext/mysqli/tests/ |
H A D | bug70384.phpt | 14 intval(substr($link->server_version."", -5, 1)). 16 intval(substr($link->server_version."", -4, 2)). 18 intval(substr($link->server_version."", -2, 2)).
|
H A D | mysqli_stmt_get_result_types.phpt | 170 $tmp = intval(@date('Y'));
|
H A D | mysqli_stmt_bind_result.phpt | 214 $tmp = intval(@date('Y'));
|
/PHP-8.4/ext/filter/tests/ |
H A D | bug47745.phpt | 8 var_dump(intval($s));
|
/PHP-8.4/ext/opcache/tests/jit/ |
H A D | noval_001.phpt | 19 $count = intval(9223372036854775807);
|
/PHP-8.4/ |
H A D | run-tests.php | 171 $workerID = intval(getenv("TEST_PHP_WORKER")); 419 $workers = intval($workers, 10); 523 $environment['TEST_TIMEOUT'] = intval($timeout, 10); 530 $context_line_count = intval($context_line_count, 10); 542 $slow_min_ms = intval($slow_min_ms, 10);
|
/PHP-8.4/ext/standard/tests/streams/ |
H A D | bug60106-001.phpt | 16 $socket_file = substr($socket_file, 0, intval($matches[1]));
|
H A D | bug60106-002.phpt | 17 $max_normal_length = intval($matches[1]);
|
/PHP-8.4/ext/opcache/tests/ |
H A D | phi_remove_001.phpt | 45 … getid3_lib::safe_inc($Distribution['padding'][intval($LongMPEGpaddingLookup[$head4])]);
|
/PHP-8.4/ext/pdo_pgsql/tests/ |
H A D | bug69752.phpt | 43 $usage = intval(floor(memory_get_usage() / 1024));
|
/PHP-8.4/ext/sqlite3/tests/ |
H A D | sqlite3_25_create_aggregate.phpt | 15 $context['total'] += intval($string);
|
/PHP-8.4/ext/date/tests/ |
H A D | date_create-relative.phpt | 9 define('PHP_INT_MIN', intval(-PHP_INT_MAX - 1));
|
/PHP-8.4/Zend/tests/zend_ini/ |
H A D | zend_ini_parse_quantity_overflow.phpt | 13 $digit = intval($s[strlen($s)-1]);
|
/PHP-8.4/scripts/dev/ |
H A D | check_parameters.php | 74 $mid = intval(($left + $right)/2);
|
/PHP-8.4/ext/standard/ |
H A D | type.c | 142 PHP_FUNCTION(intval) in PHP_FUNCTION() argument
|
H A D | basic_functions.stub.php | 3605 function intval(mixed $value, int $base = 10): int {}
|
/PHP-8.4/sapi/fpm/tests/ |
H A D | fcgi.inc | 780 $keepAlive = intval($this->_keepAlive);
|