Home
last modified time | relevance | path

Searched refs:hexdec (Results 1 – 11 of 11) sorted by relevance

/PHP-8.0/ext/standard/tests/math/
H A Dhexdec_basic_64bit.phpt2 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 Dhexdec.phpt8 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 Dhexdec_variation1.phpt2 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 Dhexdec_variation1_64bit.phpt2 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 Dhexdec_basic.phpt2 Test hexdec() - basic function test hexdec()
28 $res = hexdec($values[$i]);
H A Dhexdec_basiclong_64bit.phpt2 Test hexdec function : 64bit long tests
29 var_dump(hexdec($strVal));
/PHP-8.0/ext/standard/html_tables/
H A Dhtml_table_gen.php190 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 Dopenssl_peer_fingerprint_basic.phpt57 $brokenLastCharacter = dechex(hexdec($lastCharacter) ^ 1);
/PHP-8.0/ext/standard/
H A Dmath.c913 PHP_FUNCTION(hexdec) in PHP_FUNCTION() argument
H A Dbasic_functions.stub.php1097 function hexdec(string $hex_string): int|float {} function
H A Dbasic_functions_arginfo.h2681 ZEND_FUNCTION(hexdec);
3321 ZEND_FE(hexdec, arginfo_hexdec)

Completed in 52 milliseconds