Thinkphp6 模型 指定字段自增的方法

tp6要使用Db类必须使用门面方式(think\facade\Db)调用。

use think\facade\Db;

然后,用Db::raw就可以实现指定字段自增了。

你可能感兴趣的:(php)