|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2017-01-04 21:48 UTC] requinix@php.net
-Status: Open
+Status: Feedback
[2017-01-04 21:48 UTC] requinix@php.net
[2017-01-06 10:43 UTC] mumu at seznam dot cz
-Status: Feedback
+Status: Open
[2017-01-06 10:43 UTC] mumu at seznam dot cz
[2017-01-06 17:51 UTC] cmb@php.net
-Status: Open
+Status: Not a bug
-Package: Unknown/Other Function
+Package: Scripting Engine problem
-Assigned To:
+Assigned To: cmb
[2017-01-06 17:51 UTC] cmb@php.net
[2017-01-07 06:38 UTC] a at b dot c dot de
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Dec 17 08:00:01 2025 UTC |
Description: ------------ '3.' is evaluated as a numeric string even it is not a valid number. Test script: --------------- <?php echo '3. ' . (is_numeric('3.') ? 'IS' : 'IS NOT') . ' numeric'; ?> Expected result: ---------------- is_numeric('3.') returns false. Actual result: -------------- is_numeric('3.') returns true.