|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-04-14 16:18 UTC] mfischer@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Dec 11 04:00:01 2025 UTC |
It would be nice if more than one class can be parent of my class. <?php class a { function a() { } } class b { function b() { } } class c extends a, b { function c() { $this->a(); $this->b(); } } ?>