/** * 显示文章详细页面 */ public function show() { // 接收文章id $aid = isset($_REQUEST['aid']) ? intval($_REQUEST['aid']) : ''; // 接收类型id $tid = isset($_REQUEST['tid']) ? intval($_REQUEST['tid']) : ''; // var_dump($_REQUEST); // exit; if (empty($aid) || $aid == null || empty($tid) || $tid == null) { header('location:index.php'); } // 取出文章 $article = new ArticeModel(); $articles = $article->getByIdandType($aid, $tid); if (count($articles) == 0) { $this->error('index.php', '没有该片文章...'); } // 文章浏览数加1 $article->updateScan($aid); //上一篇文章 $Previous = $article->getPreviousArtice($articles['a_id']); //下一篇文章 $next = $article->getNextArtice($articles['a_id']); // 头部样式 $this->header(); // 遍历评论 $replay = new ReplayModel(); $rows = $replay->getReplayByTypeId($aid); // 内容样式 include_once VIEW_DIR . '/temp/show.html'; // 右边样式 // 获取所有文章分类 慢生活分类ID为1 $type = new SortArticleModel(); $types = $type->getTypeById(1); // 获取栏目推荐 $hots = $article->getTypeHot(); // 获取最新评论 $talk = new ReplayModel(); $talks = $talk->getReplay(); // 获取点击排行 $articles = $article->getTypeScan(); // 备案 $filings = new InitModel(); $filing = $filings->getOne(); include_once VIEW_DIR . '/temp/show2.html'; }