예제 #1
0
파일: I18N.php 프로젝트: Maxlander/shixi
 /**
  * I18N
  *
  * @return SJB_I18N
  */
 public static function getInstance()
 {
     if (!isset($GLOBALS['I18N_Instance'])) {
         $GLOBALS['I18N_Instance'] = SJB_I18N::create();
     }
     return $GLOBALS['I18N_Instance'];
 }