Exemplo n.º 1
0
 /**
  * 更新数据
  * @access public
  * @param array     $data 数据数组
  * @param array     $where 更新条件
  * @return $this
  */
 public static function update($data = [], $where = [])
 {
     $model = new static();
     $result = $model->isUpdate(true)->save($data, $where);
     return $model;
 }
Exemplo n.º 2
0
 /**
  * 更新数据
  * @access public
  * @param array         $data 数据数组
  * @param array         $where 更新条件
  * @param array|true    $field 允许字段
  * @return $this
  */
 public static function update($data = [], $where = [], $field = null)
 {
     $model = new static();
     if (!empty($field)) {
         $model->allowField($field);
     }
     $result = $model->isUpdate(true)->save($data, $where);
     return $model;
 }