Re: [PHP-DEV] class inheritance

2006-05-09 Thread Thomas Moenicke
Hi Marcus, Marcus Boerger wrote: > sure php is unlike c++ where everything is handled via vmt's that change > during construction. In php the ctors are called after the default values > are applied to every member variable. Actually the most outer ctor is being > called so in your case B's. If t

Re: [PHP-DEV] class inheritance

2006-05-08 Thread Marcus Boerger
Hello Thomas, sure php is unlike c++ where everything is handled via vmt's that change during construction. In php the ctors are called after the default values are applied to every member variable. Actually the most outer ctor is being called so in your case B's. If that is calling into A's cto