increment自增方法有两个参数:第一个为必填,代表要对数据表的哪个字段进行自增操作,第二个参数为可选,如果为空则表示每次递增1,如果填写了比如3,则表示每次在原有的基础上递增3。
DB操作:
代码语言:javascript复制DB::table('users')- increment('votes');
DB::table('users')- increment('votes', 5);
DB::table('users')- decrement('votes');
DB::table('users')- decrement('votes', 5);
模型操作
代码语言:javascript复制Pattern::where('id',$id)- increment('download');
以上这篇laravel 中某一字段自增、自减的例子就是小编分享给大家的全部内容了,希望能给大家一个参考。