Example #1
0
 public static function act_getSMSPage($where, $perNum, $pa = "", $lang = 'CN')
 {
     $total = NoticeModel::getNoticeList($where, $limit = '', 'nt_sms');
     $page = new Page(count($total), $perNum, $pa, $lang);
     $list = NoticeModel::getNoticeList($where, $page->limit, 'nt_sms');
     $fpage = $page->fpage();
     return array($list, $fpage, count($total));
 }