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