Edit report at https://bugs.php.net/bug.php?id=64877&edit=1
ID: 64877 Comment by: ni...@php.net Reported by: cmbecker69 at gmx dot de Summary: is_numeric() doesn't treat strings in binary notation as documented Status: Open Type: Bug Package: Scripting Engine problem Operating System: any PHP Version: 5.4.0 and later Block user comment: N Private report: N New Comment: Related discussion for is_numeric_string: http://markmail.org/message/ax2drcb6dolr5agl. General consensus is that we would rather remove hex support than add support for binary and octal. Previous Comments: ------------------------------------------------------------------------ [2013-10-31 16:43:09] cmbecker69 at gmx dot de | This is bugged also for hex numbers: The results are as expected according to the documentation. Note, that a hexadecimal number is only reported as being numeric, if it is in hexadecimal string notation (i.e. starting with 0x). The first example is correctly reported as being numeric, because the "e" is recognized as starting the exponential part of the number. ------------------------------------------------------------------------ [2013-10-31 16:08:45] daniele dot didomizio at eurac dot edu This is bugged also for hex numbers: print "526e948280122 " .(is_numeric("526e948280122") ? "numeric" : "not numeric"). PHP_EOL; print "526a948280122 ". (is_numeric("526a948280122") ? "numeric" : "not numeric"). PHP_EOL; print "0x526a948280122 ". (is_numeric("0x526a948280122") ? "numeric" : "not numeric"). PHP_EOL; print "526f948280122 ". (is_numeric("526f948280122") ? "numeric" : "not numeric"). PHP_EOL; output is: 526e948280122 numeric 526a948280122 not numeric 0x526a948280122 numeric 526f948280122 not numeric tested with versions 5.5.4-1 and 5.4.4 (Debian version 5.4.4-14+deb7u5) ------------------------------------------------------------------------ [2013-08-18 04:01:08] yohg...@php.net > is_numeric()/intval() (many others) were not taken into account new format. is_numeric()/intval() (may be others) were not taken into account new format. ------------------------------------------------------------------------ [2013-08-18 03:46:48] yohg...@php.net This problem was introduced when binary format integer was supported. is_numeric()/intval() (many others) were not taken into account new format. ------------------------------------------------------------------------ [2013-08-18 03:43:45] yohg...@php.net Related to https://bugs.php.net/bug.php?id=65418 ------------------------------------------------------------------------ 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=64877 -- Edit this bug report at https://bugs.php.net/bug.php?id=64877&edit=1