Searched refs:hexdec (Results 1 – 17 of 17) sorted by relevance
/PHP-8.1/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 -- 79 -- hexdec 3110130 -- 82 -- hexdec 4767 -- 85 -- hexdec 011237 -- 88 -- hexdec 1 -- [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_variation2.phpt | 2 Test hexdec() function : strange literals 6 var_dump(hexdec('0x')); 7 var_dump(hexdec('0X')); 8 var_dump(hexdec(''));
|
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"; 58 // loop through each element of $inputs to check the behaviour of hexdec() 63 var_dump(hexdec($input)); 72 *** Testing hexdec() : usage variations *** 136 hexdec(): Argument #1 ($hex_string) must be of type string, array given 154 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"; 58 // loop through each element of $inputs to check the behaviour of hexdec() 63 var_dump(hexdec($input)); 72 *** Testing hexdec() : usage variations *** 136 hexdec(): Argument #1 ($hex_string) must be of type string, array given 154 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.1/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.1/ext/mbstring/ |
H A D | gen_rare_cp_bitvec.php | 23 $start = hexdec($range[0]); 24 $end = hexdec($range[1]);
|
/PHP-8.1/ext/openssl/tests/ |
H A D | openssl_peer_fingerprint_basic.phpt | 58 $brokenLastCharacter = dechex(hexdec($lastCharacter) ^ 1);
|
/PHP-8.1/ext/mbstring/tests/ |
H A D | sjis2004_encoding.phpt | 33 $codepoint1 = hexdec($match[1]);
|
H A D | sjis_mobile_encodings.phpt | 100 $utf32 = pack('N', hexdec($fields[0])); 105 $docomo[pack('n', hexdec($fields[1]))] = $utf32; 107 $kddi[pack('n', hexdec($fields[2]))] = $utf32; 109 $bytes = pack('n', hexdec($fields[3]));
|
H A D | iso2022jp_kddi_encoding.phpt | 60 $utf32 = pack('N', hexdec($fields[0])); 63 $kuten = shiftJISDecode(hexdec($fields[2]));
|
H A D | encoding_tests.inc | 29 $char .= chr(hexdec($substr));
|
/PHP-8.1/ext/standard/ |
H A D | math.c | 909 PHP_FUNCTION(hexdec) in PHP_FUNCTION() argument
|
H A D | basic_functions.stub.php | 1445 function hexdec(string $hex_string): int|float {} function
|
H A D | basic_functions_arginfo.h | 2693 ZEND_FUNCTION(hexdec); 3336 ZEND_FE(hexdec, arginfo_hexdec)
|
Completed in 61 milliseconds