thinkphp自增与更改结合使用数据存储


Db::name('province') // 或者使用模型名,如果你已经设置了模型名对应表名
->where('province_name', 'like', "%{$this->user['province_name']}%")
    ->update([
        'num' => DB::raw('`num` + 1'), // 使用数据库表达式来增加num的值
        'addtime' => time(), // 直接使用PHP的time()函数来获取当前时间戳
    ]);



评论0



    0.152990s