Edit report at https://bugs.php.net/bug.php?id=65556&edit=1

 ID:                 65556
 Updated by:         johan...@php.net
 Reported by:        ante dot drnasin at wirecard dot com
 Summary:            Wrong error thrown
-Status:             Open
+Status:             Not a bug
 Type:               Bug
 Package:            *General Issues
 Operating System:   Win7 Pro x64
 PHP Version:        5.5.3
 Block user comment: N
 Private report:     N

 New Comment:

The parser looks for something starting with a $ sign (to check for an 
variable, property, array offset etc.) or some literal followed by :: in order 
to check for static properties, it doesn't check whether the literal is a valid 
class name at that stage and null is no conflicting parser token.


Previous Comments:
------------------------------------------------------------------------
[2013-08-26 08:18:52] ante dot drnasin at wirecard dot com

Description:
------------
Just a small issue.

When (ab)using "return empty(null);"

you get T_PAAMAYIM_NEKUDOTAYIM error (unexpected ")" expecting "::") which is 
not true...

is it per design or a bug?


Test script:
---------------
function test() {
   return empty(null);
}

Expected result:
----------------
Null is not a valid value for "empty"

Actual result:
--------------
T_PAAMAYIM_NEKUDOTAYIM error


------------------------------------------------------------------------



-- 
Edit this bug report at https://bugs.php.net/bug.php?id=65556&edit=1

Reply via email to