2011年3月11日

摘要: 今天用phpexcel做导出的时候遇到2个问题,一是eregi函数 在5.3以后的版本 deprecated 查了下翻译 意思是废除了没办法只能preg_match 代替。if(!function_exists('eregi')){ function eregi($pattern,$string,$regs=array()) { return preg_match('/'.$pattern.'/i',$string,$regs); }}第一时间想到的是 用上面的方法重定义下函数,悲剧的是 deprecated了 但php -r "var 阅读全文
posted @ 2011-03-11 12:36 andychia 阅读(443) 评论(0) 推荐(0)
摘要: # cd //到用户的目录# vim ~/.vimrcset number:wq 阅读全文
posted @ 2011-03-11 12:33 andychia 阅读(124) 评论(0) 推荐(0)
摘要: nginx的log有以下几种类型: [ debug | info | notice | warn | error | crit ] 在nginx.conf的设置:error_log logs/error.log debug; debug 为最详细 crit最少 阅读全文
posted @ 2011-03-11 12:32 andychia 阅读(227) 评论(0) 推荐(0)
摘要: pdialog = new ProgressDialog(context); pdialog.setButton("cancel", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int i) { onCancelled(); } }); pdialog.setOnCancelListener(new DialogInterface.OnCancelListener() { public void onCancel(DialogInterface dia 阅读全文
posted @ 2011-03-11 12:28 andychia 阅读(413) 评论(0) 推荐(0)

导航