12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- namespace app\index\controller;
- //use app\common\controller\Frontend;
- use think\Controller;
- use think\Db;
- class Index extends Controller
- {
- protected $noNeedLogin = '*';
- protected $noNeedRight = '*';
- protected $layout = '';
- public function index()
- {
- return $this->view->fetch();
- }
- /**
- * app下载页
- * 判断是安卓还是ios
- */
- public function appdownload() {
- /*$this->view->assign('downurl', config("site.apkurl"));
- return $this->view->fetch();*/
- 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')){
- //$host = $_SERVER["REQUEST_SCHEME"]."://".$_SERVER["HTTP_HOST"];
- //header("Location: ".$host."/index/index/download");
- $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();
- }
- }
- //基础文章网页
- public function basedata(){
- $key = input('key','');
- if(!$key){
- exit;
- }
- $content = Db::name('basedata')->where('key',$key)->find();
- $this->assign('content',$content['content']);
- return $this->fetch();
- }
- }
|