本文整理匯總了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();
}
示例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();
}