摘要: $now = time(); //今天 $today_audit_num = 0; $today_use_num = 0; $beginTime = date('Y-m-d 00:00:00', $now); $endTime = date('Y-m-d 23:59:59', $now); //本周 $week_audit_num = 0; $week_use_num = 0; $time = '1' == date('w') ? strtotime('Monday', $now) : strtotime(' 阅读全文
posted @ 2013-05-08 14:28 多奴 阅读(518) 评论(0) 推荐(0) 编辑
摘要: 由于upload.php中的写文件是通过copy和move_uploaded_file来实现的,因此当中文名作为参数传递到copy函数中时,需要将gb2312编码的中文转换为UTF-8编码形式:$config['file_name'] = iconv("UTF-8","gb2312",$filename['filename']) 阅读全文
posted @ 2013-05-08 14:18 多奴 阅读(359) 评论(0) 推荐(0) 编辑