thinkphp5 模型的 更新操作
Posted 2420355482
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkphp5 模型的 更新操作相关的知识,希望对你有一定的参考价值。
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 模型的 更新操作的主要内容,如果未能解决你的问题,请参考以下文章