On Mon, Apr 08, 2002 at 08:59:39AM -0700, brad lafountain wrote:
> class A;
> class B;
> class C;
> 
> $c = new C;
> aggergate($c, "A");
> aggergate($c, "B");
> 
> Just because they "can".

Yes of course, but how is this better than

class D extends A, B, C;
$d = new D;

for the same reasons (i.e. because you can as opposed to "it makes sense"???)

Kristian

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to