Fork me on Baidu
摘要: 首先你不是一个人在战斗,写成常量方便队友理解;然后可以避免一些错误,无论是数字还是字符串常量,都可能在不同的地方拼写不一致,导致错误;还有就是方便修改,比如你有100个地方用这个常量,只改一处就可以;最后就是对你自己也好,几个月过后可能你想不起来这个常数是什么含义了。 出自:https://zhid 阅读全文
posted @ 2021-12-01 18:22 consideration 阅读(53) 评论(0) 推荐(0) 编辑
摘要: 第一步:SOURCETree 工具下载地址 https://www.sourcetreeapp.com/ 第二步:下载后生成 一个私钥避免重复的书写用户名和密码 打开git命令行 运行下面的命令 ssh-keygen -t rsa 然后生成一个 C:\Users\WanYi\.ssh 文件夹下面生成 阅读全文
posted @ 2021-11-30 19:15 consideration 阅读(225) 评论(0) 推荐(0) 编辑
摘要: postman 安装地址 https://www.postman.com/downloads/ 稍后选择合适的进行安装 就可以了 可以选择新创一个用户 这样自己先前的接口就会进行保留 阅读全文
posted @ 2021-11-26 15:56 consideration 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 1,使用toSql() 方法打印 出sql 语句 (使用toSql() 注意 S 要大写 要不然出来效果) 2,使用DB 类 获取sql语句信息 (注意要引入DB 门面类) 3,使用 newQuery() 方法可以追寻一些无法跳转的方法 使用newQuery() 方法 可以追寻get() 方法 别的 阅读全文
posted @ 2021-08-20 11:29 consideration 阅读(429) 评论(0) 推荐(0) 编辑
摘要: <script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"> </s 阅读全文
posted @ 2021-08-16 18:26 consideration 阅读(39) 评论(0) 推荐(0) 编辑
摘要: The bootstrap/cache directory must be present and writable 请清除缓存 php artisan cache:clear 原文:https://blog.csdn.net/hs_shengxiaguangnian/article/details 阅读全文
posted @ 2021-08-15 22:59 consideration 阅读(970) 评论(0) 推荐(0) 编辑
摘要: 1、下载composer curl -sS https://getcomposer.org/installer | php 2、将composer.phar文件移动到bin目录以便全局使用composer命令 mv composer.phar /usr/local/bin/composer 3、切换 阅读全文
posted @ 2021-08-13 17:11 consideration 阅读(50) 评论(0) 推荐(0) 编辑
摘要: PHP闭包函数 # 提到闭包就不得不想起匿名函数,也叫闭包函数(closures),貌似PHP闭包实现主要就是靠它。声明一个匿名函数是这样: $func = function() { }; //带结束符 # 可以看到,匿名函数因为没有名字,如果要使用它,需要将其返回给一个变量。匿名函数也像普通函数一 阅读全文
posted @ 2021-08-13 14:37 consideration 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 修改c:\windows\system32\drivers\etc\host文件添加192.30.255.112 github.com151.101.72.249 github.global.ssl.fastly.net 阅读全文
posted @ 2021-08-10 18:17 consideration 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 下载openssl 地址 https://oomake.com/download/openssl2.解压tar -zxvf openssl-1.1.1g.tar.gz3.切换目录 cd openssl-1.1.1g4. 添加openssl配置: ./config –prefix=/usr/local 阅读全文
posted @ 2021-08-09 15:47 consideration 阅读(1939) 评论(0) 推荐(0) 编辑