In article <[EMAIL PROTECTED]>,
 [EMAIL PROTECTED] (Brian White) wrote:

> There are times when I would really like to be able to do:
> 
> class A
> {
>      function DoStuff()
>      {
>         .....
>      }
> }
> 
> class B extends A
> {
>      function DoStuff()
>      {
>         .....
>         $super->DoStuff(); // Calls the function in A
>      }
> }

Maybe I'm misunderstanding you, but isn't that what the A::DoStuff() syntax 
does?

-- 
CC

-- 
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