コード例 #1
0
ファイル: Model.php プロジェクト: ninjanero/framework
 function update()
 {
     $update = $this->_data;
     unset($update[$this->primary]);
     return $this->db->update($this->_current_id, $this->_update, $this->table, $this->primary);
 }
コード例 #2
0
ファイル: Model.php プロジェクト: matyhtf/swoole_framework
 function update()
 {
     $update = $this->_data;
     unset($update[$this->primary]);
     if ($this->db->update($this->_current_id, $this->_update, $this->table, $this->primary) === false) {
         return false;
     }
     $this->notify();
     return true;
 }