Searched refs:hexdec (Results 1 – 11 of 11) sorted by relevance
/PHP-8.0/ext/standard/tests/math/ |
H A D | hexdec_basic_64bit.phpt | 2 Test hexdec() - basic function test hexdec() 39 -- hexdec 1194684 -- 42 -- hexdec 7904751 -- 68 -- hexdec 311015 -- 71 -- hexdec 311015 -- 74 -- hexdec 31101.3 -- 82 -- hexdec 4767 -- 85 -- hexdec 011237 -- 88 -- hexdec 1 -- 91 -- hexdec -- [all …]
|
H A D | hexdec.phpt | 8 var_dump(hexdec("012345")); 9 var_dump(hexdec("12345")); 10 var_dump(hexdec("q12345")); 11 var_dump(hexdec("12345+?!")); 12 var_dump(hexdec("12345q")); 13 var_dump((float)hexdec("1234500001")); 14 var_dump((float)hexdec("17fffffff"));
|
H A D | hexdec_variation1.phpt | 2 Test hexdec() function : usage variations - different data types as $number arg 11 echo "*** Testing hexdec() : usage variations ***\n"; 71 // loop through each element of $inputs to check the behaviour of hexdec() 76 var_dump(hexdec($input)); 85 *** Testing hexdec() : usage variations *** 155 hexdec(): Argument #1 ($hex_string) must be of type string, array given 179 hexdec(): Argument #1 ($hex_string) must be of type string, resource given
|
H A D | hexdec_variation1_64bit.phpt | 2 Test hexdec() function : usage variations - different data types as $number arg 11 echo "*** Testing hexdec() : usage variations ***\n"; 71 // loop through each element of $inputs to check the behaviour of hexdec() 76 var_dump(hexdec($input)); 85 *** Testing hexdec() : usage variations *** 155 hexdec(): Argument #1 ($hex_string) must be of type string, array given 179 hexdec(): Argument #1 ($hex_string) must be of type string, resource given
|
H A D | hexdec_basic.phpt | 2 Test hexdec() - basic function test hexdec() 28 $res = hexdec($values[$i]);
|
H A D | hexdec_basiclong_64bit.phpt | 2 Test hexdec function : 64bit long tests 29 var_dump(hexdec($strVal));
|
/PHP-8.0/ext/standard/html_tables/ |
H A D | html_table_gen.php | 190 foreach ($map as $v) { $mappy[hexdec($v[0])] = hexdec($v[1]); } 334 if (hexdec($v[0]) >= $e['range'][0] && hexdec($v[0]) <= $e['range'][1]) 335 $mappy[hexdec($v[1])] = array(hexdec($v[0]), strtolower($v[2])); 433 usort($dp, function($a, $b) { return hexdec($a[1])-hexdec($b[1]); }); 521 $s1 = (hexdec($el[1]) & 0xFFF000) >> 12; 522 $s2 = (hexdec($el[1]) & 0xFC0) >> 6; 523 $s3 = hexdec($el[1]) & 0x3F; 757 $h[0], strlen($h[0]), hexdec($h[1]), hexdec($h[2])); 760 $h[0], strlen($h[0]), hexdec($h[1]));
|
/PHP-8.0/ext/openssl/tests/ |
H A D | openssl_peer_fingerprint_basic.phpt | 57 $brokenLastCharacter = dechex(hexdec($lastCharacter) ^ 1);
|
/PHP-8.0/ext/standard/ |
H A D | math.c | 913 PHP_FUNCTION(hexdec) in PHP_FUNCTION() argument
|
H A D | basic_functions.stub.php | 1097 function hexdec(string $hex_string): int|float {} function
|
H A D | basic_functions_arginfo.h | 2681 ZEND_FUNCTION(hexdec); 3321 ZEND_FE(hexdec, arginfo_hexdec)
|
Completed in 35 milliseconds