摘要:下表列出了模态框中要用到事件。这些事件可在函数中当钩子使用。
阅读全文
摘要:http://www.jb51.net/article/78916.htm
阅读全文
摘要:装redis 扩展时,发现装成功之后扩展一直加载不上, 于是phpinfo 发现Configuration File (php.ini) Path:none Loaded Configuration File:none 于是复制一份,配置上 解决了,坑, 切记不着急 用心
阅读全文
摘要: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).'秒';
阅读全文
摘要:前几日要写微信支付接口,微信支付接口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/
阅读全文
摘要:nginx 下conf/nginx.conf 或者自己的vhosts更改以前的参数location/{root html;indexindex.htmlindex.htmindex.php;try_files$uri/index.php$uri;if(!-e$request_filename)...
阅读全文
摘要:./configure --prefix=/usr/local/php --enable-fastcgi --enable-zip --enable-fpm --enable-gd-native-ttf --with-config-file-path=/usr/local/php/etc --wit...
阅读全文
摘要:高负载PHP调优针对PHP的Linux调优调整文件描述符限制#ulimit-n1000000#vi/etc/security/limits.conf#SettingShellLimitsforFileDescriptors*softnofile1000000*hardnofile1000000禁止P...
阅读全文
摘要:Mysql 读写分离YIi 配置'yii\db\Connection', 'masterConfig' => [ // 'dsn' => 'mysql:host=localhost;dbname=studyyii', 'username' =>'root', 'password' =>'caesar...
阅读全文