php-general | 2001072
Date: 07/27/01
- Next message: George Pitcher: "Re: [PHP] Newbie Help (CLASS WAR!)"
- Previous message: Jonas Delfs: "[PHP] Re: $str = var_dump()"
- In reply to: Brian White: "Re: [PHP] Newbie Help (CLASS WAR!)"
- Next in thread: George Pitcher: "Re: [PHP] Newbie Help (CLASS WAR!)"
- Reply: George Pitcher: "Re: [PHP] Newbie Help (CLASS WAR!)"
- Reply: Brian White: "Re: [PHP] Newbie Help (CLASS WAR!)"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
In article <4.3.2.20010727094739.00b7ca40 <email protected>>,
bwhite <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: php-general-unsubscribe <email protected> For additional commands, e-mail: php-general-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: George Pitcher: "Re: [PHP] Newbie Help (CLASS WAR!)"
- Previous message: Jonas Delfs: "[PHP] Re: $str = var_dump()"
- In reply to: Brian White: "Re: [PHP] Newbie Help (CLASS WAR!)"
- Next in thread: George Pitcher: "Re: [PHP] Newbie Help (CLASS WAR!)"
- Reply: George Pitcher: "Re: [PHP] Newbie Help (CLASS WAR!)"
- Reply: Brian White: "Re: [PHP] Newbie Help (CLASS WAR!)"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

