上一页 1 2 3 4 5 6 7 8 9 10 ··· 20 下一页
  2019年11月20日
摘要: https://blog.csdn.net/hou_angela/article/details/80519718 阅读全文
posted @ 2019-11-20 19:34 上善若水-随 阅读(74) 评论(0) 推荐(0) 编辑
  2019年11月16日
摘要: https://www.cnblogs.com/libin-1/p/6649816.html 阅读全文
posted @ 2019-11-16 09:55 上善若水-随 阅读(269) 评论(0) 推荐(0) 编辑
  2019年10月30日
摘要: 箭头函数的作用域箭头函数作用域是和父级的上下文绑定在一起的测试用例: var obj = { id: 1, show: () => { console.log(this.id) }}obj.show()输出: undefined在此例中show函数为箭头函数,因此this绑定父级中的this,父级是 阅读全文
posted @ 2019-10-30 19:14 上善若水-随 阅读(1021) 评论(0) 推荐(0) 编辑
  2019年10月9日
摘要: 我们想要下载FTP服务器的一个文件夹而不需要其他文件夹的文件,这个时候命 阅读全文
posted @ 2019-10-09 10:37 上善若水-随 阅读(5460) 评论(0) 推荐(0) 编辑
  2019年9月28日
摘要: https://blog.csdn.net/netdxy/article/details/51518494 https://www.cnblogs.com/liu-fei-fei/p/5974403.html 阅读全文
posted @ 2019-09-28 17:48 上善若水-随 阅读(504) 评论(0) 推荐(0) 编辑
  2019年9月25日
摘要: HTTP协议的Cache -Control指定请求和响应遵循的缓存机制。在请求消息或响应消息中设置 Cache-Control并不会影响另一个消息处理过程中的缓存处理过程。请求时的缓存指令包括: no-cache、no-store、max-age、 max-stale、min-fresh、only- 阅读全文
posted @ 2019-09-25 14:41 上善若水-随 阅读(1218) 评论(0) 推荐(0) 编辑
  2019年9月24日
摘要: 1.备份 备份/etc/apt/sources.list文件 1 mv /etc/apt/sources.list /etc/apt/sourses.list.backup 1 mv /etc/apt/sources.list /etc/apt/sourses.list.backup 1 mv /e 阅读全文
posted @ 2019-09-24 09:06 上善若水-随 阅读(64402) 评论(0) 推荐(0) 编辑
  2019年8月25日
摘要: 1、使用命令composer init生成composer.json文件,并编辑autoload选项内容如下: 其中又包含主要的两个选项: files 和 psr-4。 files就是需要composer自动帮我们加载的函数库(不含类),只要在后面的数组中将函数库的文件路径写入即可。psr-4顾名思 阅读全文
posted @ 2019-08-25 15:05 上善若水-随 阅读(454) 评论(0) 推荐(0) 编辑
  2019年5月13日
摘要: 注释: x509,公钥证书,只有公钥。p7,签名或加密。可以往里面塞x509,同时没有签名或加密内容。p12,含有私钥,同时可以有公钥,有口令保护。p7的作用就是电子信封。X509是基本规范P7和P12是两个实现规范,P7是数字信封,P12是带有私钥的证书规范。x509是数字证书的规范,P7和P12 阅读全文
posted @ 2019-05-13 17:48 上善若水-随 阅读(2193) 评论(0) 推荐(0) 编辑
摘要: 常见的进制: 二进制 binary > bin 八进制 octal > oct 十进制 decimal > dec 十六进制 hexadecimal > hex php提供了几常见进制之间转换的函数 二进制转为其他进制 binoct();//转为八进制 bindec();//转为十进制 binhex 阅读全文
posted @ 2019-05-13 15:08 上善若水-随 阅读(6932) 评论(0) 推荐(1) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 20 下一页