本文整理汇总了PHP中ContentModel::Detail_Comment方法的典型用法代码示例。如果您正苦于以下问题:PHP ContentModel::Detail_Comment方法的具体用法?PHP ContentModel::Detail_Comment怎么用?PHP ContentModel::Detail_Comment使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ContentModel
的用法示例。
在下文中一共展示了ContentModel::Detail_Comment方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Add_Comment
private function Add_Comment()
{
// echo 'http://'.$_SERVER["HTTP_HOST"].$_SERVER["SCRIPT_NAME"].'?'.$_SERVER["QUERY_STRING"];
// echo '<br/>';
// echo PREV_URL;
global $templates;
if (isset($_POST['send'])) {
$url = 'http://' . $_SERVER["HTTP_HOST"] . $_SERVER["SCRIPT_NAME"] . '?' . $_SERVER["QUERY_STRING"];
if ($url == PREV_URL) {
if (!Validate::Check_Equals($_SESSION['code'], $_POST['code'])) {
Tool::alertBack('验证码不正确,请重新输入');
}
if (Validate::Check_Null($_POST['content'])) {
Tool::alertBack('内容不能为空');
}
} else {
if (!Validate::Check_Equals($_SESSION['code'], $_POST['code'])) {
Tool::alertClose('验证码不正确,请重新输入');
}
if (Validate::Check_Null($_POST['content'])) {
Tool::alertClose('内容不能为空');
}
}
if (isset($_COOKIE['user'])) {
$this->model->username = $_COOKIE['user'];
} else {
$this->model->username = '游客';
}
$this->model->cid = $_GET['cid'];
$this->model->manner = $_POST['manner'];
$this->model->content = $_POST['content'];
$templates->assgin('cid', $this->model->cid);
if ($this->model->Add_Comment()) {
//添加评论成功后,开始更新content中的评论数
$content = new ContentModel();
$content->cid = $_GET['cid'];
$content->Detail_Comment();
Tool::alertLocation('评论成功', 'feedback.php?cid=' . $this->model->cid);
} else {
Tool::alertLocation('评论失败', 'feedback.php?cid=' . $this->model->cid);
}
}
}