phpbar.de logo

Mailinglisten-Archive

[php] Statische methoden in PHP4

[php] Statische methoden in PHP4

Irani, Amir, VF-DE amir.irani at vodafone.com
Fre Feb 11 09:41:56 CET 2005


Hallo ,

Ich würde gerne wissen ob es in PHP4 statische methoden gibt.
Ich würde nämlich gerne eine Singelton methode implementieren und dafür bräuchte ich 
Eben eine static function()...

Falls nicht..
Wie könnte man eine Singelton in PHP realisieren..

In PHP5 habe ich es so versucht..
public static function instance()
	{
		if( ApplicationProperties :: $instance == null )
		{
			ApplicationProperties :: $instance = new ApplicationProperties();
		}
		
		return (ApplicationProperties :: $instance);
	}

Besten Dank
Amir

php::bar PHP Wiki   -   Listenarchive