|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-08-31 08:48 UTC] stas@php.net
[2002-09-09 09:04 UTC] scallop at iki dot fi
[2006-07-15 10:20 UTC] info at triin dot net
[2007-01-07 11:26 UTC] bjori@php.net
[2010-06-03 02:50 UTC] tom at tomwardrop dot com
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 13:00:01 2025 UTC |
Multiple class extends creates ordering error The below.. <? class c extends b {} class b extends a {} class a {} ?> gives an error 'Fatal error: Class c: Cannot inherit from undefined class b in test.html on line 4', but.. <? class b extends a {} class a {} // class c moved to bottom class c extends b {} ?> works fine. I imagine this could be fixed by first ordering the classes by their given dependencies and then process them one by one.