1. 程式人生 > >thinkphp5 模型的 更新操作

thinkphp5 模型的 更新操作

png AI result inf nbsp 更新 fun 允許 cti

技術分享圖片

public function index()
{
  $ad = new Destoon_ad();
  $data=[
  ‘url‘=>‘www.baidu.com‘,
  ‘pid‘=>‘6666‘

];
$where = [‘aid‘=>1];
$ad->save($data,$where);
dump($ad->getData());
}

靜態更新

public function index()
{
  //update(更新數據,更新條件,允許更新字段)
  $data = [
  ‘pid‘=>888,‘url‘=>‘www.888.com‘
  ];
  $where = [‘aid‘=>1];
  $field = [‘pid‘,‘url‘];
  $result = Destoon_ad::update($data,$where,$field);
  dump($result->getData());
}

thinkphp5 模型的 更新操作