コード例 #1
0
ファイル: model.php プロジェクト: maksa988/myucp
 public function table($name)
 {
     $this->table = $name;
     $this->Builder = Builder::table($name);
     return $this;
 }
コード例 #2
0
ファイル: Builder.php プロジェクト: maksa988/myucp
 private function clear()
 {
     $this->limit = null;
     $this->sql = null;
     $this->set = null;
     $this->select = null;
     $this->order = null;
     $this->presence = false;
     $this->key = null;
     $this->value = null;
     $this->group = null;
     $this->join = null;
     self::$table = null;
 }