Hello Tiago,

this is not the PHP support forum. PHP-DEV is for developing PHP.
You want to post such questions to PHP-GENERAL.

On Mon, May 21, 2001 at 04:17:49PM +0100, Tiago Moitinho wrote : 
> How do I inherit a class that inherits the constructor behaviour from the
> parent class, assuming the parent class cannot be changed? 
> For instance, 
> 
> class A { 
>   // this class is already define, not changeable
>   function A()
>      // does something
>   }
> }
> 
> class B extends A {
>   function B()
>      // inherits A construction: how do I do this? 
>      // does something else
>   }
> }


class B extends A {

        function B() {
                // call parents constructor
                A::A();
        }

}

- Markus

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to