advanced code snippet search
cyrilbatillat on 02/11/08
php5
02/11/08 09:43am
Usage : $MonObjet = Single::GetInstance();
<?phpClass Single { static $instance; private function __construct() {} static function GetInstance() { if (empty(self::$MyInstance)) self::$MyInstance = new Single; return self::$MyInstance; } }?>
Report this snippet Tweet
Comment:
You need to login to post a comment.