摘要:
(function(){ this.sendAjax = function(url,func,formData,type){ type = type || "POST"; //默认为POST的方式 var xhr = new XMLHttpRequest(); if( typeof xhr.withCredentials===undefin... 阅读全文
摘要:
在百度搜索到的 PharData 类和 ZipArchive 都是解压不了 .gz 的文件的,后来在 google 搜索到解决方法,问题解决。 http://stackoverflow.com/questions/3293121/how-can-i-unzip-a-gz-file-with-php 阅读全文
摘要:
select aid,group_concat(bid order by bid separator ',') as bid_str from tbl group by aid; SET GLOBAL group_concat_max_len = 1024; show variables like 阅读全文
摘要:
<VirtualHost *:80> ServerName www.test.com DocumentRoot /var/www/www.test.com ErrorDocument 404 /404.html <Directory /var/www/www.test.com> <Files ~ " 阅读全文
该文被密码保护。 阅读全文
摘要:
Pdo::$instance->beginTransaction(); //开启事务 Pdo::$instance->rollBack(); //回滚 Pdo::$instance->commit(); //提交事务 阅读全文
摘要:
curl_error($ch) 用 curl_error 来获取 curl 的错误 阅读全文
摘要:
nohup python -u /data/daemon/daemon/run.py & 使py程序可以在后台运行 nohup php a.php &在linux平台上,要在后台运行脚本的话,一般是在命令之后加上&即可 (1)舍弃标准输出,将错误输出到log文件中 nohup ./program > 阅读全文