Re[2]: [PHP] calling static method within class

2005-10-28 Thread Tom Rogers
ean "some CR> class library" correct? CR> Carlo Razzeto CR> Programmer CR> Mortgage Information Services CR> Phone: (216) 514-1025 ex. 1212 CR> -Original Message- CR> From: blackwater dev [mailto:[EMAIL PROTECTED] CR> Sent: Friday, October 28, 2005 1:13

RE: [PHP] calling static method within class

2005-10-28 Thread Carlo Razzeto
ion Services Phone: (216) 514-1025 ex. 1212 -Original Message- From: blackwater dev [mailto:[EMAIL PROTECTED] Sent: Friday, October 28, 2005 1:13 PM To: php-general@lists.php.net Subject: [PHP] calling static method within class I have a class that won't be instantiated...so basical

Re: [PHP] calling static method within class

2005-10-28 Thread Greg Donald
On Fri, 28 Oct 2005, blackwater dev wrote: I have a class that won't be instantiated...so basically just a bunch of static methods. How do I call one of the class' static methods from within another method? Can't use this, and self doesn't work...this is php4. Same way you do it outside the

[PHP] calling static method within class

2005-10-28 Thread blackwater dev
I have a class that won't be instantiated...so basically just a bunch of static methods. How do I call one of the class' static methods from within another method? Can't use this, and self doesn't work...this is php4. Thanks. Class Foo{ function getMe(){ return "me"; } function ge