Re: [PHP] Newbie Help (CLASS WAR!)

2001-07-29 Thread Brian White
At 03:25 27/07/2001 -0700, CC Zona wrote: >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 exte

Re: [PHP] Newbie Help (CLASS WAR!)

2001-07-27 Thread George Pitcher
Have a look at: http://www.phpbuilder.com/columns/luis2420.php3 HTH George, still a newbie after a week on php - Original Message - From: CC Zona <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 27, 2001 11:25 AM Subject: Re: [PHP] Newbie Help (CLASS

Re: [PHP] Newbie Help (CLASS WAR!)

2001-07-27 Thread CC Zona
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() > { > . >

Re: [PHP] Newbie Help (CLASS WAR!)

2001-07-26 Thread Brian White
I use classes a lot and don't have this problem. This is because the names of the class ( and thus the constructor name ) tends to be a noun and otherfunctions tend to be verbs, so I am don't have this kind of clash. I am VERY glad that PHP has classes and I use them alot. However My bi