/**
* 更新数据
* @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;
}我是这么去写的 $companyModel = new \app\basic\model\Company();
$data = array(
'company_id' => 11,
'company_name' => 'tp5测ds试',
);
$result = $companyModel->update($data);
var_dump($result);die; 最佳答案