当前位置:主页 > 软件编程 > PHP代码 >

laravel 中某一字段自增、自减的例子

时间:2020-12-08 22:54:46 | 栏目:PHP代码 | 点击:

increment自增方法有两个参数:第一个为必填,代表要对数据表的哪个字段进行自增操作,第二个参数为可选,如果为空则表示每次递增1,如果填写了比如3,则表示每次在原有的基础上递增3。

DB操作:

DB::table('users')->increment('votes');
 
DB::table('users')->increment('votes', 5);
 
DB::table('users')->decrement('votes');
 
DB::table('users')->decrement('votes', 5);

模型操作

Pattern::where('id',$id)->increment('download');

您可能感兴趣的文章:

相关文章