|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2019-01-28 14:23 UTC] cmb@php.net
-Status: Open
+Status: Not a bug
-Assigned To:
+Assigned To: cmb
[2019-01-28 14:23 UTC] cmb@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 07:00:01 2025 UTC |
Description: ------------ is_numeric("069") = true ? ok $array[123=>"069"]; ok $array[123=>069]; invalid numeric literal compilation error! why? pls fix or compilator or is_numeric Test script: --------------- is_numeric("069") = true ? ok $array[123=>"069"]; ok $array[123=>069]; invalid numeric literal compilation error! why? pls fix or compilator or is_numeric Expected result: ---------------- ok ok invalid numeric literal compilation error! Actual result: -------------- ok ok ok