Edit report at https://bugs.php.net/bug.php?id=61095&edit=1
ID: 61095 Comment by: jordan dot sherer at definition6 dot com Reported by: tomek at przeslij dot pl Summary: PHP can't add hex numbers Status: Assigned Type: Bug Package: Scripting Engine problem Operating System: Windows XP PHP Version: 5.3.10 Assigned To: colder Block user comment: N Private report: N New Comment: Reproduced, but after adding spaces around the + it works as intended. $ php -r 'echo (0x00+2);echo "\n";' 4 $ php -r 'echo (0x00 + 2);echo "\n";' 2 $ php -v PHP 5.3.8 with Suhosin-Patch (cli) (built: Nov 15 2011 15:33:15) Copyright (c) 1997-2011 The PHP Group Zend Engine v2.3.0, Copyright (c) 1998-2011 Zend Technologies Previous Comments: ------------------------------------------------------------------------ [2012-02-23 20:40:21] balthasar dot reuter at cs dot fau dot de Behavior reproduced: $ php -r 'echo (0x00+2);echo "\n";' 4 $ php -r 'echo (0x00+ 2);echo "\n";' 2 $ php -r 'echo (0x00 + 2);echo "\n";' 2 $ php -r 'echo (0x00 +2);echo "\n";' 4 $ php -v PHP 5.3.8 (cli) (built: Dec 5 2011 21:24:09) Copyright (c) 1997-2011 The PHP Group Zend Engine v2.3.0, Copyright (c) 1998-2011 Zend Technologies Mac OS X 10.6.8 ------------------------------------------------------------------------ [2012-02-23 20:14:37] phpbug at vincent dot sh Lexer level ? Russian. http://goo.gl/eqxZ8 ------------------------------------------------------------------------ [2012-02-23 15:56:59] lepidosteus+phpbug at gmail dot com Sorry, forget my previous comment, I misunderstood the issue ------------------------------------------------------------------------ [2012-02-23 15:55:00] lepidosteus+phpbug at gmail dot com Correct behavior for me in 5.3.3-7+squeeze3 $ php -r "var_dump(0x02+0x00);" int(2) $ php -r "var_dump(0x02+0);" int(2) $ php -r "var_dump('0x02'+0);" int(2) ------------------------------------------------------------------------ [2012-02-20 18:28:55] col...@php.net Automatic comment from SVN on behalf of colder Revision: http://svn.php.net/viewvc/?view=revision&revision=323394 Log: Fix #61095 (Lexing 0x0*+<NUM> incorrectly) ------------------------------------------------------------------------ The remainder of the comments for this report are too long. To view the rest of the comments, please view the bug report online at https://bugs.php.net/bug.php?id=61095 -- Edit this bug report at https://bugs.php.net/bug.php?id=61095&edit=1