摘要: 报错:Class App\Http\Controllers\Admin/LoginController does not exist 原因:注意路由 控制器路径的斜杠应该是\而不是/ 阅读全文
posted @ 2020-02-17 17:34 时光一寸灰 阅读(656) 评论(0) 推荐(0) 编辑
摘要: 一、本地操作: 1.其它 git init:初始化本地库 git status:查看工作区、暂存区的状态 git add <file name>/git add .:将工作区的“新建/修改”添加到暂存区 git rm --cached <file name>:移除暂存区的修改 git commit 阅读全文
posted @ 2020-02-15 11:24 时光一寸灰 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 一、安装composer 参考菜鸟教程:https://www.runoob.com/w3cnote/composer-install-and-usage.html 二、下载laravel安装工具 进入win10 控制台 输入composer 看composer 是否安装成功 输入 命令: comp 阅读全文
posted @ 2020-02-13 17:42 时光一寸灰 阅读(769) 评论(0) 推荐(0) 编辑
摘要: $arr = [4,5,3,7,8,9];print_r(maopao($arr));function maopao($arr){ $len = count($arr); $n = $len-1; for ($i=0;$i<=$len;$i++){ for ($j=0;$j<$n;$j++){ if 阅读全文
posted @ 2020-02-12 15:23 时光一寸灰 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 表单验证匹配 验证账号,字母开头,允许 5-16 字节,允许字母数字下划线:^[a-zA-Z][a-zA-Z0-9_]{4,15}$ 验证账号,不能为空,不能有空格,只能是英文字母:^\S+[a-z A-Z]$ 验证账号,不能有空格,不能非数字:^\d+$ 验证用户密码,以字母开头,长度在 6-18 阅读全文
posted @ 2020-02-12 10:36 时光一寸灰 阅读(254) 评论(0) 推荐(0) 编辑