_rspData(require('../config/annc.php')); $data = array(); $row = myself()->_getConfDbMysql()->execQueryOne( 'SELECT * FROM t_game_annc WHERE begin_time < :star_time AND end_time > :end_time AND is_open = :open_state', array( ':star_time' => myself()->_getNowTime(), ':end_time' => myself()->_getNowTime(), ':open_state' => 1, ) ); if ($row){ $data = array( 'id' => $row['uniid'], 'title' => $row['title'], 'content' => $row['content'] ); } myself()->_rspData($data); } }