Searched refs:hexdec (Results 1 – 12 of 12) sorted by relevance
/PHP-7.0/ext/standard/tests/math/ |
H A D | hexdec_basic_64bit.phpt | 2 Test hexdec() - basic function test hexdec() 40 -- hexdec 1194684 -- 43 -- hexdec 7904751 -- 67 -- hexdec 311015 -- 70 -- hexdec 311015 -- 73 -- hexdec 31101.3 -- 79 -- hexdec 4767 -- 82 -- hexdec 011237 -- 85 -- hexdec 1 -- 88 -- 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_error.phpt | 2 Test hexdec() - wrong params test hexdec() 5 /* Prototype : number hexdec ( string $hex_string ) 10 echo "*** Testing hexdec() : error conditions ***\n"; 18 hexdec(); 19 hexdec('0x123abc',true); 22 hexdec(new classA()); 26 *** Testing hexdec() : error conditions *** 30 Warning: hexdec() expects exactly 1 parameter, 0 given in %s on line %d 32 Warning: hexdec() expects exactly 1 parameter, 2 given in %s on line %d
|
H A D | hexdec_variation1.phpt | 2 Test hexdec() function : usage variations - different data types as $number arg 11 /* Prototype : number hexdec ( string $hex_string ) 16 echo "*** Testing hexdec() : usage variations ***\n"; 76 // loop through each element of $inputs to check the behaviour of hexdec() 80 var_dump(hexdec($input)); 87 *** Testing hexdec() : usage variations ***
|
H A D | hexdec_variation1_64bit.phpt | 2 Test hexdec() function : usage variations - different data types as $number arg 11 /* Prototype : number hexdec ( string $hex_string ) 16 echo "*** Testing hexdec() : usage variations ***\n"; 76 // loop through each element of $inputs to check the behaviour of hexdec() 80 var_dump(hexdec($input)); 87 *** Testing hexdec() : usage variations ***
|
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-7.0/ext/standard/html_tables/ |
H A D | html_table_gen.php | 195 foreach ($map as $v) { $mappy[hexdec($v[0])] = hexdec($v[1]); } 339 if (hexdec($v[0]) >= $e['range'][0] && hexdec($v[0]) <= $e['range'][1]) 340 $mappy[hexdec($v[1])] = array(hexdec($v[0]), strtolower($v[2])); 438 usort($dp, function($a, $b) { return hexdec($a[1])-hexdec($b[1]); }); 526 $s1 = (hexdec($el[1]) & 0xFFF000) >> 12; 527 $s2 = (hexdec($el[1]) & 0xFC0) >> 6; 528 $s3 = hexdec($el[1]) & 0x3F; 762 $h[0], strlen($h[0]), hexdec($h[1]), hexdec($h[2])); 765 $h[0], strlen($h[0]), hexdec($h[1]));
|
/PHP-7.0/ext/recode/tests/ |
H A D | 001.phpt | 21 $ascii .= chr(hexdec(substr($hex, $i, 2)));
|
/PHP-7.0/ext/standard/ |
H A D | php_math.h | 63 PHP_FUNCTION(hexdec);
|
H A D | math.c | 1004 PHP_FUNCTION(hexdec) in PHP_FUNCTION() argument
|
H A D | basic_functions.c | 2916 PHP_FE(hexdec, arginfo_hexdec)
|
Completed in 51 milliseconds