mdl_create_table() public method

创建表 mdl_create function.
public mdl_create_table ( ) : void
return void
Beispiel #1
0
 private function table_user()
 {
     include_once BG_PATH_MODEL . "user.class.php";
     //载入管理帐号模型
     $_mdl_user = new MODEL_USER();
     $_arr_userTable = $_mdl_user->mdl_create_table();
     if ($_arr_userTable["alert"] != "y010105") {
         $this->obj_api->halt_re($_arr_userTable);
     }
 }
Beispiel #2
0
 private function table_user()
 {
     include_once BG_PATH_MODEL . "user.class.php";
     //载入管理帐号模型
     $_mdl_user = new MODEL_USER();
     $_arr_userTable = $_mdl_user->mdl_create_table();
     $this->tplData["db_alert"]["user_table"] = array("alert" => $_arr_userTable["alert"], "status" => substr($_arr_userTable["alert"], 0, 1));
 }