Esempio n. 1
0
File: model.php Progetto: 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);
 }