示例#1
0
 /**
  * initialize the singleton
  */
 public static function init()
 {
     if (!self::$object) {
         self::$object = new self();
     }
     return self::$object;
 }