摘要:
/** * 打印函数 * */ if (! function_exists ( 'dump' )) { function dump($var, $exit = true) { echo ''; print_r ( $var ); echo ''; if ($exit) { die (); ... 阅读全文
摘要:
/** * 修复 a表 生日格式问题 * @author qin */ public function update_birthday_one() { $this->load->model('a'); $datearr = @addslashes_array($this->input->get()); ... 阅读全文