view->fetch(); } // 新闻详情 public function news_detail() { $id = input('id',0,'intval'); $info = Db::name('news')->field('id,title,content,create_time')->where('id',$id)->where('status',1)->find(); if($info){ $info['create_time_text'] = date('Y-m-d H:i',$info['create_time']); } $this->view->assign('info', $info); return $this->view->fetch(); } /** * app下载页 * 判断是安卓还是ios */ public function appdownload() { if(strpos($_SERVER['HTTP_USER_AGENT'], 'iPhone')||strpos($_SERVER['HTTP_USER_AGENT'], 'iPad')){ header("Location: ".config('site.user_ios_download_url')); }else if(strpos($_SERVER['HTTP_USER_AGENT'], 'Android')){ $this->view->assign('downurl', config("site.user_android_download_url")); return $this->view->fetch(); }else{ $this->view->assign('downurl', config("site.user_android_download_url")); return $this->view->fetch(); } } //基础文章网页 public function basedata(){ $key = input('key',''); if(!$key){ exit; } $content = Db::name('basedata')->where('key',$key)->find(); if(!$content){ exit; } $this->assign('content',$content['content']); return $this->fetch(); } }