當前位置: 首頁>>代碼示例>>PHP>>正文


PHP NewsModel::oneNews方法代碼示例

本文整理匯總了PHP中NewsModel::oneNews方法的典型用法代碼示例。如果您正苦於以下問題:PHP NewsModel::oneNews方法的具體用法?PHP NewsModel::oneNews怎麽用?PHP NewsModel::oneNews使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在NewsModel的用法示例。


在下文中一共展示了NewsModel::oneNews方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: editarticleAction

 public function editarticleAction()
 {
     $index = $this->intVal(3);
     $newsModel = new NewsModel();
     $news = $newsModel->oneNews($index);
     $this->_mainContent->assign("threads", $threads);
     $this->_mainContent->assign("news", $news);
     $this->viewFile = "Homeadmin/newarticle.html";
     $this->display();
 }
開發者ID:lilhorse,項目名稱:cocoa,代碼行數:10,代碼來源:HomeadminController.php

示例2: sAction

 public function sAction()
 {
     $index = $this->intVal(3);
     $other = $this->strVal(4);
     if (count($this->__uriparts) != 5 || !empty($other)) {
         header('HTTP/1.1 301 Moved Permanently');
         header("location: /home/s/{$index}/");
     }
     $allModel = new AllModel();
     $newsModel = new NewsModel();
     $tongji = new TongjiModel();
     $dataall = $tongji->data("all");
     $hotnews = $tongji->hotnews(10);
     $threads = $allModel->allThreads(1, 10);
     $news = $newsModel->oneNews($index);
     $comments = $newsModel->commentsByNewsId($index);
     $nonamename = $_COOKIE["nonamename"];
     if (empty($nonamename)) {
         $nonamename = "匿名用戶" . rand(0, 10000);
         setcookie("nonamename", $nonamename, time() + 3600 * 24 * 7 * 2);
     }
     $this->_mainContent->assign("threads", $threads);
     $this->_mainContent->assign("news", $news);
     $this->_mainContent->assign("comments", $comments);
     $this->_mainContent->assign("userid", $this->userid);
     $this->_mainContent->assign("username", $this->username);
     $this->_mainContent->assign("nonamename", $nonamename);
     $this->_mainContent->assign("pageview", $dataall[$index]);
     $this->_mainContent->assign("hotnews", $hotnews);
     $publickey = "6LcGEuMSAAAAAOKJbYerrUqiotwH4wHyYr5E0Y-w";
     $recaptcha = recaptcha_get_html($publickey);
     $this->_mainContent->assign("recaptcha", $recaptcha);
     $this->setTitle($news["title"]);
     $this->display();
 }
開發者ID:lilhorse,項目名稱:cocoa,代碼行數:35,代碼來源:HomeController.php


注:本文中的NewsModel::oneNews方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。