摘要:
1、安装redis 下载:wget --no-check-certificate https://github.com/nicolasff/phpredis/archive/2.2.4.tar.gz tar zxvf phpredis-2.2.4.tar.gz #解压 cd phpredis-2.2 阅读全文
摘要:
1、crontab 编辑“crontab -e # m h dom mon dow command30 18 * * * lynx -dump http://admin.koala.xxx 30 18 * * * lynx -dump http://admin.koala.xxx 30 18 * * 阅读全文
摘要:
$t1 = microtime(true); //...要执行的代码$t2 = microtime(true); echo '耗时'.round($t2-$t1,3).'秒'; 阅读全文
摘要:
1、vi nginx.conf 找到http {}中log_foramt ,定义post 日志格式 有日志demo形式,可根据自己需要配置日志格式。 2、在location php 解析{}中加入记录日志 access_log /opt/log/post.log post_log; 保存。重启即可 阅读全文
摘要:
前几日要写微信支付接口,微信支付接口CURL地址是HTTPS。本机测试的是OK的,但是服务器缺提示错误--“ Protocol https not supported or disabled in libcurl”; 纠结了半天是因为curl不支持https ,并且在phpinfo 中查看 curl 阅读全文
摘要:
public function changeCoverName(){ //$type = '考研'; //$coverPath = './Public/course_cover/kaoyan/'; $type = '四六级'; $coverPath = './Public/course_cover/ 阅读全文
摘要:
1、登录mysql客户端 mysql -u root -p 输入密码进入 2、生成 sql 语句文件 SELECT CONCAT('TRUNCATE TABLE ',TABLE_NAME,';') into outfile '/home/truncatetable.sql' FROM informa 阅读全文
摘要:
nginx 下conf/nginx.conf 或者自己的vhosts更改以前的参数location/{root html;indexindex.htmlindex.htmindex.php;try_files$uri/index.php$uri;if(!-e$request_filename)... 阅读全文
摘要:
公司有三台机器在机房,因为IP不够用,肯定要分出来,所以要建立单IP 多域名的反向代理,就是当请求www.abc.com 跳转到本机, 请求www.bbc.com 跳转到192.168.0.35 机器上去,前提 192.168.0.35 装了nginx和php环境。#vi /usr/local/ng... 阅读全文