- 2024-11-08laravel11:安装使用octane
一,什么是octane?1,LaravelOctane 通过使用高性能应用程序服务器为您的应用程序提供服务来增强您的应用程序的性能, 包括OpenSwoole,Swoole,和 RoadRunner。Octane启动您的应用程序一次,将其保存在内存中,然后以极快的速度向它提供请求。2,官网地址:https://laravel.com/d
- 2024-11-07laravel:optimize和clear(laravel11)
一,optimize创建的文件在哪里?执行optimize:$phpartisanoptimizeINFOCachingframeworkbootstrap,configuration,andmetadata.config................................................................57.67msDONEevents...........................
- 2024-11-01laravel11:中间件传递参数
一,官方的文档:参考地址:https://docs.golaravel.com/docs/middleware二,演示:功能:一个中间件负责验证用户是否已登录, 传递参数的作用是:在已登录基础是否验证真人身份核验,值为1时要核验,其他情况可以不用1,为中间件注册一个别名:bootstrap/app.php->withMidd
- 2024-10-16laravel11: 开启optimize和不开启optimize的区别有多大?
一,测试环境:PHP8.3.9LaravelFramework11.15.0接口没访问数据,只是从redis取数据测试前已开启opcache+jit二,未开启optimize时访问10次测试前先执行4个clear,避免有之前做的cacheroot@lhdpc:/data/api#phpartisanroute:clearINFORoutecacheclearedsuccessfull
- 2024-10-10laravel11:添加全局中间件
一,文档地址:https://docs.golaravel.com/docs/middleware注意选择11这个版本二,添加全局中间件时,需要添加到bootstrap/app.php文件中:1,useApp\Http\Middleware\EnsureTokenIsValid;->withMiddleware(function(Middleware$middleware){$middleware->append(Ensure
- 2024-08-30laravel11+vue项目
laravel11+vue项目视频地址https://www.youtube.com/watch?v=s6P1dDfl56s&list=PL38wFHH4qYZUdIKP9jG371N3G4kbWAg2c&index=2项目初始化地址直接下载https://github.com/JonVadar/Laravel-Inertia-Vue-Starter``composerinstallnpminstall复制.env.example文件并将其
- 2024-08-27laravel11+vue编程
文档视频地址https://www.youtube.com/watch?v=iGnlmxA7oM8&list=PL38wFHH4qYZXCW2rlBLNdHi5cv-v_qlXO视频代码https://github.com/JonVadar/YouTube_videos/tree/main/Webdeveloperpathvideos/laravel_Inertia_VueCSSfile:https://github.com/JonVadar/YouTube_videos
- 2024-08-17laravel11知识点
相关链接视频教程https://www.youtube.com/watch?v=XTDNs4TB_lE&list=PL38wFHH4qYZXH8Gb7PIbmyjdsWdEJLImp文档https://learnku.com/docs/laravel/11.xhttps://laravel.com/docs/11.xTailwindCSS:https://tailwindcss.com/docs/guides/laravel常用关键标签blade指令
- 2024-07-23laravel11: php时间不正确
一,问题表现服务器时间正确,php时间正确laravel时间不正确未使用laravel框架使用laravel框架:可以看到,使用laravel框架时,时间早8个小时二,解决: 1,配置timezone,编辑php.ini 配置timezone,PRC和Asia/Shanghai均可;date.timezone=Asia/Shanghaidate.timezone=
- 2024-07-17laravel11: 给接口增加签名验证
一,添加controller/中间件/路由1,添加中间件liuhongdi@lhdpc:/data/site/gsapi$phpartisanmake:middlewareApiSignINFOMiddleware[app/Http/Middleware/ApiSign.php]createdsuccessfully.2,添加路由:在routes/api.php文件中Route::controller(VirtualControlle
- 2024-07-17laravel11:发生异常时返回json
一,未配置前laravel11直接render页面如图:二,配置1, bootstrap/app.php<?phpuseIlluminate\Http\Request;useIlluminate\Auth\AuthenticationException;useIlluminate\Database\Eloquent\ModelNotFoundException;useIlluminate\Foundation\Application;useIllu