thinkphp5 模型的 更新操作
阿新 • • 發佈:2018-04-15
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 模型的 更新操作