摘要: /** * 当本页面所有脚本执行完成之后执行(回调函数) * @param string functionName 函数名 * @access protected * @return */ protected function _register_shutdown() { $m = M(); regis... 阅读全文
posted @ 2017-03-08 13:29 代罪羊 阅读(180) 评论(0) 推荐(0) 编辑
摘要: /* 上传缩略图 */ $.ajaxFileUpload({ url:'/admin/Upload/SchoolSendXhb', secureuri:false, fileElementId:'img_url', dataType: 'json', dat... 阅读全文
posted @ 2017-03-08 13:24 代罪羊 阅读(287) 评论(0) 推荐(0) 编辑
摘要: ALTER TABLE `class_student` ADD INDEX `student_id-class_id` (`student_id`, `class_id`);增加索引 alter TABLE `school_info` ADD `school_img` varchar(255) not null COMMENT '学校校徽' after `school_name`; 增加字段 ... 阅读全文
posted @ 2017-03-08 13:23 代罪羊 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-03-08 13:17 代罪羊 阅读(173) 评论(0) 推荐(0) 编辑
摘要: /** * [errArrayCount 合并一个二维数组相同项,数量则相加] * @param [type] $all_date [array] * @return [type] [array] */ public function errArrayCount($all_date){ $item=array(... 阅读全文
posted @ 2017-03-08 13:14 代罪羊 阅读(738) 评论(0) 推荐(0) 编辑
摘要: /** * [empty 清除空值] * @param [type] $data [数组] * @return [type] [array] */ public function emptyValue($data){ // $list = array(); foreach ($data as $k =>... 阅读全文
posted @ 2017-03-08 13:12 代罪羊 阅读(189) 评论(0) 推荐(0) 编辑
摘要: public function arrayProcessing($list, $k){ $data = array(); foreach ($list as $_date) { $data[ $_date[$k] ] = $_date; } return $data; } 阅读全文
posted @ 2017-03-08 13:11 代罪羊 阅读(736) 评论(0) 推荐(0) 编辑
摘要: /** * [ArraySort 二维数组排序] * @param [type] $data [二维数组] * @param [type] $key [根据key排序] */ public function ArraySort($data, $key){ $sort = array( 'direction'... 阅读全文
posted @ 2017-03-08 13:11 代罪羊 阅读(114) 评论(0) 推荐(0) 编辑
摘要: createSection(); // Define table style arrays $styleTable = array('borderSize'=>6, 'borderColor'=>'006699', 'cellMargin'=>80); $styleFirstRow = array('borderBottomSize'=>18, 'borderBottomColor'=>'00... 阅读全文
posted @ 2017-03-08 13:07 代罪羊 阅读(262) 评论(0) 推荐(0) 编辑
摘要: //数组组完后生成excel vendor('Excel.PHPExcel'); $objExcel = new PHPExcel(); $objActSheet = $objExcel->getSheet(0); //设置打印纸张A4 $objActSheet->getPageSetup()->setPaperSi... 阅读全文
posted @ 2017-03-08 12:57 代罪羊 阅读(170) 评论(0) 推荐(0) 编辑
摘要: <?php class Alert{ private $mail_user = ''; private $mail_password = ''; /* * 发送邮件 * 2017/3/1 heyafei */ public function push($emails, $subject, $html 阅读全文
posted @ 2017-03-08 11:59 代罪羊 阅读(81) 评论(0) 推荐(0) 编辑