摘要: 这里运用到省份表中,下面是效果图 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 需要一个省份表,里面的字段要有个pid,name这些字段 下面是控制器代码,(Citie,是那个省份表的模型) 1 //显示页面 2 public function create(){ 阅读全文
posted @ 2023-05-09 17:35 还好阿卡 阅读(67) 评论(0) 推荐(0)
摘要: 1 //处理文件上传 2 if ($request->hasFile('image')&&$request->file('image')->isValid()){ 3 //对上传文件做必要处理 4 $filename=date('ymdHis').rand(100000,999999).'.'.$r 阅读全文
posted @ 2023-04-27 09:38 还好阿卡 阅读(238) 评论(1) 推荐(0)
摘要: 进入官网 Dcat Admin - Php后台开发框架 这里要选择1.x 下面来安装框架 安装完laravel之后,需要修改.env文件,设置数据库链接设置正确 安装 dcat-admin composer require dcat/laravel-admin 然后运行下面的命令来发布资源: php 阅读全文
posted @ 2023-03-16 16:38 还好阿卡 阅读(1056) 评论(0) 推荐(0)
摘要: 下面是前端表单代码 1 <form onsubmit="return checkFrom()" action="index2.html"> 2 名称:<input type="text" id="name" onblur="checkName()"> 3 <span id="names"></spa 阅读全文
posted @ 2023-03-09 17:10 还好阿卡 阅读(89) 评论(0) 推荐(0)
摘要: 初始化仓库 1 git init git add . "提交信息"里面换成自己的需要 如"first commit" git commit -m "提交信息" 此操作目的是把本地仓库push到github上面 git push -u origin master 切换分支命令 git checkout 阅读全文
posted @ 2023-02-28 09:54 还好阿卡 阅读(63) 评论(0) 推荐(0)
摘要: 1.新增新用户lili,不允许登录系统,用户ID为3000 useradd -u 3000 -s /sbin/nologin lili2.循环创建目录 /www/wwwroot/html/test mkdir -p /www/wwwroot/html/testcd /www/wwwroot/html 阅读全文
posted @ 2022-12-12 11:09 还好阿卡 阅读(71) 评论(0) 推荐(0)
摘要: Think php6.0官网网址:序言 · ThinkPHP6.0完全开发手册 · 看云 (kancloud.cn) 下面是基础配置 第一步:创建TP框架,命名为tp composer create-project topthink/think tp 第二步:点击架构里面的多应用模式,安装多应用模式 阅读全文
posted @ 2022-08-29 12:21 还好阿卡 阅读(822) 评论(0) 推荐(0)
摘要: 第一步:点击基础安装tp框架composer create-project topthink/think tp 第二步:点击架构多应用模式 拓展composer require topthink/think-multi-app 第三步:点击命令行自动生成应用目录php think build dem 阅读全文
posted @ 2022-08-17 16:13 还好阿卡 阅读(143) 评论(0) 推荐(0)
摘要: 在桌面上创建一个txt文件 将下面复制该文件里面, Windows Registry Editor Version 5.00 ;WARNING, this file will remove Google Chrome registry entries ;from your Windows Regis 阅读全文
posted @ 2022-07-28 09:48 还好阿卡 阅读(317) 评论(0) 推荐(0)
摘要: ll 显示当前目录下的文件的详细信息ls显示的简略信息ls -l显示当前目录下的文件的详细信息ll -a显示当前目录下的隐藏文件ls -a显示当前目录下的隐藏文件ls -al两个参数clear清除当前控制台pwd列出当前所在的目录位置mkdir 在linux下创建目录cat 查看文件的所有内容mor 阅读全文
posted @ 2022-06-21 20:46 还好阿卡 阅读(64) 评论(0) 推荐(0)