/** * 获取表字段 */ public function getField() { $sql = "SHOW COLUMNS FROM {$this->_table}"; return $this->_db->getField($sql); }
/** * 获取表字段 */ protected function getField() { $this->_db->_sql = "SHOW COLUMNS FROM {$this->_table};"; return $this->_db->getField(); }