摘要: 下文整理得不错。 原文地址:http://www.jianshu.com/p/052b593b8051 阅读全文
posted @ 2017-12-19 11:25 三尺微命--- 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 阿里大鱼短信提醒服务应用实例(php): function.php 其他Class文件按要求引入并实例化即可 阅读全文
posted @ 2017-10-17 14:46 三尺微命--- 阅读(1653) 评论(0) 推荐(0) 编辑
摘要: <?php/** * Created by PhpStorm. * User: xiaolong * Date: 2017/9/6 * Time: 11:51 */class RSA{ /** * 返回数据验签失败错误码,和其他错误码有冲突时可自行修改该参数值 */ const SIGN_INVAL 阅读全文
posted @ 2017-09-06 15:27 三尺微命--- 阅读(1063) 评论(0) 推荐(0) 编辑
摘要: 1 2 3 4 5 Document 6 7 8 9 10 1 11 1 12 1 13 14 15 2 16 2 17 ... 阅读全文
posted @ 2017-07-28 13:58 三尺微命--- 阅读(1401) 评论(0) 推荐(0) 编辑
摘要: 1 public_key = file_get_contents($public_key_file)) || false == ($this->private_key = file_get_contents($private_key_file))) { 57 throw new Exception('read key file fail'); 58 ... 阅读全文
posted @ 2017-07-04 17:00 三尺微命--- 阅读(423) 评论(0) 推荐(0) 编辑
摘要: web worker 是运行在后台的 JavaScript,独立于其他脚本,不会影响页面的性能。 需在后台执行的js任务: webworkers.js HTML 页 阅读全文
posted @ 2017-06-06 15:59 三尺微命--- 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 离线存储技术 HTML5提出了两大离线存储技术:localstorage与Application Cache,两者各有应用场景;传统还有离线存储技术为Cookie。 经过实践我们认为localstorage应该存储一些非关键性ajax数据; Application Cache用于存储静态资源; 而c 阅读全文
posted @ 2017-06-06 14:38 三尺微命--- 阅读(1295) 评论(0) 推荐(0) 编辑
摘要: conf/extar/httpd-vhosts.conf 文件中写入以下配置, apache 即可识别 apache httpd.conf 文件, 解除注释 Include conf/extra/httpd-vhosts.conf LoadModule rewrite_module modules/ 阅读全文
posted @ 2017-05-04 21:23 三尺微命--- 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 检测适合版本: https://xdebug.org/wizard.php phpinfo 页html源码 将下载的文件放在此目录下: "D:\www\phpStudy\php\php-5.6.27-nts\ext php.ini 文件写入以下配置: [xdebug]zend_extension=" 阅读全文
posted @ 2017-05-04 20:16 三尺微命--- 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 1、安装NFS (ECS 1 & ECS 2) 首先确认自己的服务器上面是否有portmap和nfs包. (在 CentOS6 中 portmap 更名为 rpcbind) 查询命令: 如果已安装则跳到下一步,没有则安装 安装命令: 2、配置 NFS 服务端 (ECS 1) 写入: 3、重启服务(E 阅读全文
posted @ 2017-04-20 18:24 三尺微命--- 阅读(554) 评论(0) 推荐(0) 编辑