php
划水小将军
心不妥协,行不受阻
邮箱:583285444@qq.com
展开
-
failed to open stream: No such file or directory in ***/artisan on line **
php artisan serve 报错原创 2022-01-19 10:01:17 · 351 阅读 · 0 评论 -
局域网中访问到自己的Laravel项目
让局域网变得简单起来原创 2022-01-14 17:36:41 · 539 阅读 · 0 评论 -
一台电脑同时运行多个laravel项目
初识php artian serve --port=端口号原创 2021-12-24 14:49:33 · 931 阅读 · 0 评论 -
Mac 重启服务→services
Mac 重启服务查看服务brew services list☁ 7.4 brew services list19968Name Status User Filednsmasq stopped docker-machine yons httpd stopped memcached stopped nginx stopped php@7.4 sta原创 2021-12-23 18:16:08 · 1537 阅读 · 0 评论 -
Laravel 终端命令学习笔记
php artisan storage:linkLaravel框架学习访问上传的文件原因模型关系with原因**原因**原因**原因**原因Laravel框架学习访问上传的文件php artisan storage:link原因http访问的是public文件夹下的内容上传的文件夹在storage中storage创建一个快捷方式在public里面,外部就可以直接通过这个快捷方式找到真正的storage了模型关系withwith(['user.userInfo', 'train.sta原创 2021-12-22 17:47:16 · 1019 阅读 · 0 评论 -
PHP字符串常用函数
PHP字符串常用函数在线练习平台https://rextester.com/下面的函数都是个人常用的函数,还有很多,不会的百度一下strpos 【字符串中是否包含另一个字符串】 //字符串中包含另一个字符串 if(strpos("abcd123","a")!==false){ echo "字符串中包含另一个字符串"; }else{ echo "字符串中不包含另一个字符串"; } //字符串中不包含另一个字符串 if(strpos("abcd123","原创 2021-12-04 15:53:45 · 137 阅读 · 0 评论 -
Maatwebsite 导出
我的Maatwebsite 导出案例记录一个我的Maatwebsite 导出案例官方文档有详细讲解github:https://github.com/Maatwebsite/Laravel-Excel使用文档:https://docs.laravel-excel.com/service public function export($model, $module = 'export', $request = []) { // 导出 if ($module == '原创 2021-11-24 14:16:36 · 528 阅读 · 0 评论 -
Target class [XXXXXController] does not exist【laravel 学习笔记】
Target class [ShortUrlController] does not exist问题截图解决方法第一种第二种添加命名空间原创 2021-10-14 16:54:46 · 501 阅读 · 0 评论 -
appache运行laravel项目
修改host文件C:\Windows\System32\drivers\etc\hosts#新增127.0.0.1 www.zhengxinghua.topW:\Work_PHP\httpd-2.4.51-win64-VS16\Apache24\conf\httpd.conf<VirtualHost *:80> ServerAdmin zhengxinghua@qq.com DocumentRoot "W:\Work_PHP\php_code\laravel_原创 2021-10-13 15:45:33 · 218 阅读 · 0 评论 -
我的第一个 lavavel项目
cmd 启动laravel#在项目目录中使用命令启动php artisan serve原创 2021-10-13 11:22:49 · 119 阅读 · 0 评论