|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-02-04 21:11 UTC] [email protected]
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Thu Jan 01 12:00:01 2026 UTC |
Description: ------------ Object property name is not unmangled before printing in an compile error. Reproduce code: --------------- php -r 'class a { protected static $v = "aa";} class b extends a{ protected static $v="bb";}' Expected result: ---------------- PHP Fatal error: Cannot redeclare property static protected a::$v in class b in Command line code on line 1 Actual result: -------------- PHP Fatal error: Cannot redeclare property static protected a::$ in class b in Command line code on line 1