예제 #1
0
파일: geoloc.php 프로젝트: Ben749/racetrack
 /** singleton SQL::getInstance() instead of new SQL */
 public static function i()
 {
     if (!self::$instance) {
         self::$instance = new self();
     }
     return self::$instance;
 }