上一页 1 2 3 4 5 6 7 ··· 55 下一页

2021年2月27日

SVN,GIT知识笔记

摘要: 1搭建svn服务器 subversion.apache.org/ackages.html 下载VisualSVNServer 使用Git、Git GUI和TortoiseGit https://www.cnblogs.com/daodaowei/p/5812740.html TortoiseGit安 阅读全文

posted @ 2021-02-27 11:17 防空洞123 阅读(53) 评论(0) 推荐(0) 编辑

phpstudy 新项目配置

摘要: 重新导出autoload.php 执行composer dumpautoload composer clearcache bootstrap/cache里面的文件要删除 使用mysql+nginx,新建网站这里的配置,多个网站可以同时使用80端口 根路径要执行laravel的public路径 ser 阅读全文

posted @ 2021-02-27 07:45 防空洞123 阅读(92) 评论(0) 推荐(0) 编辑

Git的使用

摘要: .gitignore里面配置的git操作是忽略的文件目录 就是提交的时候不提交的 /node_modules /public/hot /public/storage /storage/*.key /vendor .env .env.backup .phpunit.result.cache docke 阅读全文

posted @ 2021-02-27 06:35 防空洞123 阅读(47) 评论(0) 推荐(0) 编辑

laravel 队列的使用

摘要: https://www.cnblogs.com/liaohui5/p/10581638.html https://blog.csdn.net/guoguicheng1314/article/details/81132315 Laravel速查表 https://learnku.com/docs/la 阅读全文

posted @ 2021-02-27 01:09 防空洞123 阅读(50) 评论(0) 推荐(0) 编辑

2021年2月26日

laravel中redis用法

摘要: https://www.jb51.net/article/137300.htm windows下载redis: https://www.cnblogs.com/xing-nb/p/12146449.html https://blog.csdn.net/qq_39581763/article/deta 阅读全文

posted @ 2021-02-26 14:04 防空洞123 阅读(1188) 评论(0) 推荐(0) 编辑

2021年2月25日

laravel 中url使用

摘要: laravel 辅助函数url()和asset()区别 https://laravel-admin.org/docs/zh/1.x/installation url('img/home1/'),生成的链接:http://localhost/img/home1/ url("/posts/{$post- 阅读全文

posted @ 2021-02-25 21:13 防空洞123 阅读(260) 评论(0) 推荐(0) 编辑

mysql limit和offset用法

摘要: limit和offset用法 mysql里分页一般用limit来实现 1. select* from article LIMIT 1,3 2.select * from article LIMIT 3 OFFSET 1 上面两种写法都表示取2,3,4三条条数据 当limit后面跟两个参数的时候,第一 阅读全文

posted @ 2021-02-25 09:57 防空洞123 阅读(124) 评论(0) 推荐(0) 编辑

Laravel 上传文件缩略图

摘要: 这里需要注意两个地方: 表单提交方式需要是 post form 添加一个属性为 enctype="multipart/form-data" 在 index.html 加入input 标签 <!DOCTYPE html> <html lang="en"> <head> <meta charset="U 阅读全文

posted @ 2021-02-25 09:48 防空洞123 阅读(71) 评论(0) 推荐(0) 编辑

2021年2月24日

Laravel的中间件

摘要: Laravel的成功跳转 https://www.cnblogs.com/php08049/p/9237581.html public function handle(Request $request, Closure $next) { if($request->height<=150){ //dd 阅读全文

posted @ 2021-02-24 12:41 防空洞123 阅读(42) 评论(0) 推荐(0) 编辑

2021年2月23日

Larval分页,文件上传,验证码,加密,request

摘要: 分页怎么分?1 查询符合条件的总记录数2 计算总的页面3 拼凑分页链接4(重要)使用Limit语法限制分页的记录数5 展示分页的页码和分页数据Larval文件上传https://blog.csdn.net/qq_27516777/article/details/79723057 laravel中的 阅读全文

posted @ 2021-02-23 02:45 防空洞123 阅读(51) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 ··· 55 下一页

导航