>class B extends A {
>
> function B() {
> // call parents constructor
> A::A();
> }
>
>}
>
>- Markus
Why would you not use ...
class B extends A {
function B() {
{
parent::A();
}
}
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

