header('lang','zh-cn'); $content = Db::name('basedata')->where('key',$key)->find(); if($lang == 'en'){ $content['content'] = $content['content_en']; } $this->assign('content',$content['content']); return $this->fetch(); } /** * app下载页 * 判断是安卓还是ios */ public function appdownload() { if(strpos($_SERVER['HTTP_USER_AGENT'], 'iPhone')||strpos($_SERVER['HTTP_USER_AGENT'], 'iPad')){ header("Location: ".config('site.ios_downurl')); }else if(strpos($_SERVER['HTTP_USER_AGENT'], 'Android')){ $this->view->assign('downurl', config("site.android_apkUrl")); return $this->view->fetch(); }else{ $this->view->assign('downurl', config("site.android_apkUrl")); return $this->view->fetch(); } } }