Loading...
// 使用链式调用进行查询 $result = Db::table('eb_order') ->whereBetween('create_time', [$startTime, $endTime]) ->field("DATE(FROM_UNIXTIME(create_time)) AS date, CO...
composer安装下 spatie/macroablecomposer require spatie/macroablechatgpt给的示例use think\Model; use Spatie\Macroable\Macroable; class User extends Model { //在user的模型里面使用Macroable use Macroable; } //...
/** * 新增、更新商品关联 * @param array $ProductIds //商品数组 * @param array $AgentS //代理数组 * @param $is_sale //是否可以销售 * @return \think\Collection|string * @throws \Exception ...
Thinkphp的消息队列是基于queue的,先检查是否安装了queue如果没有安装则使用下方代码进行安装 根据实际情况决定是否使用指定版本号composer require topthink/think-queue:v1.1.6配置队列链接信息queue.php文件fastadmin 文件位置application/extra/queue.php 原生think的基本都位于config目录...
在mysql->user表执行下面的语句update user set host = '%' where user ='root'; flush privileges;