|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2005-11-30 22:51 UTC] viperjason at gmail dot com
Description:
------------
If you look at the code I initialize a 32bit hex value and print it with both printf and echo. I do a AND and a OR to get the value back to the original value and print it again with printf and echo.
Printf and echo disaggree on the first print
Printf and echo agree on the second print
Printf and echo agree on the third print.
What happened with the first print?
I realize you use signed integers.....but where is my sign?
Reproduce code:
---------------
<?
$a = 0x8000000F;
printf("hex=%x, dec=%d by printf\n",$a,$a);
echo $a."by echo\n";
$a = $a & 0x0FFFFFFF;
printf("hex=%x, dec=%d by printf\n",$a,$a);
echo $a."\n";
$a = $a | 0x80000000;
printf("hex=%x, dec=%d by printf\n",$a,$a);
echo $a."\n";
?>
Expected result:
----------------
I expect both printf and echo to consistantly print out the same decimal result.
Actual result:
--------------
The first time they didnt and second time they did.
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 21 04:00:02 2025 UTC |
>$a = 0x8000000F; In this case $a is bigger than int, so the engine converts it to float automatically. printf("%d") casts it back to int and you get negative value as the result. echo (int)$a; will give you the same. In all the other cases echo & printf() give the very same results. No bug here./usr/include/limits.h: #define LONG_MAX 2147483647L # php -r 'var_dump("0x".dechex(2147483647));' string(10) "0x7fffffff" # php -r 'var_dump(0x8000000F);' float(2147483663)