예제 #1
0
파일: model.php 프로젝트: pnixx/boot
 /**
  * Обновить данные таблицы из массива
  * @param array $data
  * @param string $where
  * @internal param string $table
  * @return bool|int <type>
  */
 public function update($data, $where = null)
 {
     return $this->_db->update($this->table, $data, $where);
 }