Re: [PHP] extending class then calling its original function

2002-08-01 Thread CC Zona
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Jason Wong) wrote: > On Wednesday 31 July 2002 18:36, lallous wrote: > > Hello when I extended a class and overwrite a function, can i after > > overwriting that function call it so it does what it used to do? > > > > for example in Delphi I say

Re: [PHP] extending class then calling its original function

2002-07-31 Thread Jason Wong
On Wednesday 31 July 2002 18:36, lallous wrote: > Hello when I extended a class and overwrite a function, can i after > overwriting that function call it so it does what it used to do? > > for example in Delphi I say: > > procedure TMyExtendedClass.Proc1; > begin > // do new stuff here > inherited

[PHP] extending class then calling its original function

2002-07-31 Thread lallous
Hello when I extended a class and overwrite a function, can i after overwriting that function call it so it does what it used to do? for example in Delphi I say: procedure TMyExtendedClass.Proc1; begin // do new stuff here inherited; // calls the TMyClass.Proc1; end; Elias -- PHP General M