Searched refs:dechex (Results 1 – 17 of 17) sorted by relevance
/PHP-8.3/tests/func/ |
H A D | 010.phpt | 33 $str .= '$v'.dechex($i).($i===($limit-1) ? '' : ','); 41 test($v'.dechex($limit-1).", '".dechex($limit-1).'\'); // last 42 test($v'.dechex($boundary).", '".dechex($boundary).'\'); //boundary 43 test($v'.dechex($boundary+1).", '".dechex($boundary+1).'\'); //boundary+1 44 test($v'.dechex($boundary-1).", '".dechex($boundary-1).'\'); //boundary-1 51 $str .= "'".dechex($i)."'".($i===($limit-1) ? '' : ',');
|
/PHP-8.3/ext/standard/tests/math/ |
H A D | dechex_variation1.phpt | 2 Test dechex() function : usage variations - different data types as $num arg 11 echo "*** Testing dechex() : usage variations ***\n"; 36 // loop through each element of $inputs to check the behaviour of dechex() 41 var_dump(dechex($input)); 49 *** Testing dechex() : usage variations *** 64 dechex(): Argument #1 ($num) must be of type int, float given 67 dechex(): Argument #1 ($num) must be of type int, float given 70 dechex(): Argument #1 ($num) must be of type int, float given 85 dechex(): Argument #1 ($num) must be of type int, string given 88 dechex(): Argument #1 ($num) must be of type int, string given
|
H A D | dechex_variation1_64bit.phpt | 2 Test dechex() function : usage variations - different data types as $number arg 11 echo "*** Testing dechex() : usage variations ***\n"; 36 // loop through each element of $inputs to check the behaviour of dechex() 41 var_dump(dechex($input)); 49 *** Testing dechex() : usage variations *** 64 dechex(): Argument #1 ($num) must be of type int, float given 67 dechex(): Argument #1 ($num) must be of type int, float given 85 dechex(): Argument #1 ($num) must be of type int, string given 88 dechex(): Argument #1 ($num) must be of type int, string given
|
H A D | dechex_basic.phpt | 2 Test dechex() - basic function dechex() 21 var_dump(dechex($value)); 46 dechex(): Argument #1 ($num) must be of type int, string given
|
H A D | dechex_basiclong_64bit.phpt | 2 Test dechex function : 64bit long tests 25 var_dump(dechex($longVal)); 58 dechex(): Argument #1 ($num) must be of type int, float given
|
/PHP-8.3/ext/gd/tests/ |
H A D | imageflip.phpt | 19 var_dump(dechex(imagecolorat($im, 0, 0))); 20 var_dump(dechex(imagecolorat($im, 0, 98))); 21 var_dump(dechex(imagecolorat($im, 98, 0))); 22 var_dump(dechex(imagecolorat($im, 98, 98)));
|
H A D | gh10614.phpt | 22 var_dump(dechex(imagecolorat($output, $i, $j)));
|
/PHP-8.3/ext/standard/tests/strings/ |
H A D | bug36306.phpt | 12 echo dechex(crc32("platform independent")) . "\n";
|
/PHP-8.3/ext/mbstring/ |
H A D | gen_rare_cp_bitvec.php | 53 $result .= "0x" . str_pad(dechex($bitvec[$i]), 8, '0', STR_PAD_LEFT) . ",";
|
/PHP-8.3/ext/mbstring/tests/ |
H A D | bug52981.phpt | 11 for ($i = 0; $i < $len; ++$i) echo dechex(ord($upper[$i])) . ' ';
|
/PHP-8.3/ext/openssl/tests/ |
H A D | openssl_peer_fingerprint_basic.phpt | 58 $brokenLastCharacter = dechex(hexdec($lastCharacter) ^ 1);
|
/PHP-8.3/ext/mbstring/ucgendat/ |
H A D | ucgendat.php | 722 $result .= "\n#define FIRST_DOUBLEWIDTH_CODEPOINT 0x" . dechex($wideRanges[0]->start) . "\n\n"; 733 $startCode = dechex($range->start); 734 $endCode = dechex($range->end);
|
/PHP-8.3/Zend/ |
H A D | bench.php | 187 $X[dechex($i)] = $i; 191 if ($X[dechex($i)]) { $c++; }
|
/PHP-8.3/ext/phar/tests/zip/files/ |
H A D | corrupt_zipmaker.php.inc | 76 dechex(($mtime['year']-1980<<25)|
|
/PHP-8.3/ext/standard/ |
H A D | math.c | 960 PHP_FUNCTION(dechex) in PHP_FUNCTION() argument
|
H A D | basic_functions.stub.php | 3188 function dechex(int $num): string {}
|
H A D | basic_functions_arginfo.h | 2682 ZEND_FUNCTION(dechex); 3323 ZEND_SUPPORTS_COMPILE_TIME_EVAL_FE(dechex, arginfo_dechex)
|
Completed in 43 milliseconds