Index.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. namespace app\index\controller;
  3. use think\Controller;
  4. use think\Db;
  5. class Index extends Controller
  6. {
  7. public function index(){
  8. }
  9. //基础文章网页
  10. public function basedata(){
  11. $key = input('key','');
  12. if(!$key){
  13. exit;
  14. }
  15. $lang = input('lang','');
  16. $content = Db::name('basedata')->where('key',$key)->find();
  17. if($lang == 'EN'){
  18. $content['content'] = $content['content_en'];
  19. }
  20. $this->assign('content',$content['content']);
  21. return $this->fetch();
  22. }
  23. /**
  24. * app下载页
  25. * 判断是安卓还是ios
  26. */
  27. public function appdownload() {
  28. if(strpos($_SERVER['HTTP_USER_AGENT'], 'iPhone')||strpos($_SERVER['HTTP_USER_AGENT'], 'iPad')){
  29. header("Location: ".config('site.ios_downurl'));
  30. }else if(strpos($_SERVER['HTTP_USER_AGENT'], 'Android')){
  31. $this->view->assign('downurl', config("site.android_apkUrl"));
  32. return $this->view->fetch();
  33. }else{
  34. $this->view->assign('downurl', config("site.android_apkUrl"));
  35. return $this->view->fetch();
  36. }
  37. }
  38. }