会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
CanyingV
博客园
首页
新随笔
联系
订阅
管理
2024年7月23日
修改composer镜像源
摘要: //查看镜像源composer config -g --list --verbose//修改镜像源composer config -g repo.packagist composer https://mirrors.aliyun.com/composer///解除镜像composer config
阅读全文
posted @ 2024-07-23 20:57 CanyingV
阅读(155)
评论(0)
推荐(0)
编辑
git取消文件跟踪
摘要: git rm --cached file_name
阅读全文
posted @ 2024-07-23 19:56 CanyingV
阅读(13)
评论(0)
推荐(0)
编辑
2023年9月11日
慢查询日志
摘要: 1.查询数据库是否开启慢查询记录 SHOW VARIABLES like 'slow_query_log' 2.开启慢查询记录 修改mysql配置文件 /etc/my.cnf #开启MySQL慢日志查询开关 slow_query_log = 1 #设置慢日志的时间为5秒,SQL语句执行时间超过2秒,
阅读全文
posted @ 2023-09-11 17:35 CanyingV
阅读(18)
评论(0)
推荐(0)
编辑
2023年8月7日
laravel-验证码(前后端分离)
摘要: 1.安装 composer require mews/captcha 2.获取验证码接口 $data = Captcha::create('default', true); return $this->success($data); 3.验证接口 //用户输入的验证码内容 $code = 'czuu
阅读全文
posted @ 2023-08-07 21:57 CanyingV
阅读(154)
评论(0)
推荐(0)
编辑
2023年3月11日
laravel列表查询时,限制关联数据的数量
摘要: $list=Order::query() ->select('id','order_no') ->with([ 'orderLogs'=>function($query){ $query->select('id','order_id')->orderByDesc('id'); } ]) ->limi
阅读全文
posted @ 2023-03-11 16:49 CanyingV
阅读(87)
评论(0)
推荐(0)
编辑
2022年10月21日
laravel输出文件到浏览器乱码
摘要: $file = resource_path('test.jpg');$type = mime_content_type($file);return response()->file($file, ['Content-type' => $type]); //之前第二个参数不用加就可以,更新扩展包后,输
阅读全文
posted @ 2022-10-21 13:42 CanyingV
阅读(66)
评论(0)
推荐(0)
编辑
2022年6月23日
laravel-数据迁移
摘要: 1.创建迁移文件 php artisan make:migration create_sys_admin_table 2.编写表结构 public function up() { Schema::create('sys_admin', function (Blueprint $table) { $t
阅读全文
posted @ 2022-06-23 15:40 CanyingV
阅读(69)
评论(0)
推荐(0)
编辑
2022年6月8日
laravel-生成日期数组
摘要: use Illuminate\Support\Carbon; $period = Carbon::parse('2020-03-01')->daysUntil('2020-03-10'); $dateArr = []; foreach ($period as $date) { $dateArr[]
阅读全文
posted @ 2022-06-08 16:57 CanyingV
阅读(87)
评论(0)
推荐(0)
编辑
2022年6月7日
查询表结构
摘要: SELECT COLUMN_NAME, COLUMN_TYPE, COLUMN_DEFAULT, IS_NULLABLE, COLUMN_COMMENT FROM information_schema.COLUMNS WHERE table_schema = '数据库名' AND table_nam
阅读全文
posted @ 2022-06-07 13:39 CanyingV
阅读(39)
评论(0)
推荐(0)
编辑
2022年6月1日
laravel gateway-worker
摘要: 1.php artisan make:command GatewayWorkerServer <?php namespace App\Console\Commands; use Illuminate\Console\Command; use GatewayWorker\BusinessWorker;
阅读全文
posted @ 2022-06-01 10:14 CanyingV
阅读(298)
评论(0)
推荐(0)
编辑
下一页
公告