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


PHP comments::report方法代碼示例

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


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

示例1: orders

if (check_login_bool() && $item['user_id'] != $_SESSION['user']['user_id']) {
    $ordersClass = new orders();
    if ($ordersClass->isBuyed($item['id'])) {
        $item['is_buyed'] = langMessageReplace($langArray['already_buyed'], array('URL' => '/' . $languageURL . 'users/downloads/'));
    }
}
_setTitle($item['name']);
abr('meta_description', substr(strip_tags($item['description']), 0, 255));
require_once ROOT_PATH . '/apps/users/models/users.class.php';
$usersClass = new users();
$item['user'] = $usersClass->get($item['user_id']);
abr('item', $item);
$commentsClass = new comments();
#舉報評論
if (check_login_bool() && isset($_GET['report']) && is_numeric($_GET['report'])) {
    $s = $commentsClass->report($_GET['report']);
    if ($s === true) {
        refresh('/' . $languageURL . 'items/comments/' . $itemID, $langArray['complete_report_comment'], 'complete');
    } else {
        addErrorMessage($s, '', 'error');
    }
}
#添加評論
if (check_login_bool() && isset($_POST['add'])) {
    $s = $commentsClass->add();
    if ($s === true) {
        refresh('/' . $languageURL . 'items/comments/' . $itemID, $langArray['complete_add_comment'], 'complete');
    } else {
        addErrorMessage($langArray['error_item_comment'], '', 'error');
    }
} elseif (isset($_POST['add_reply'])) {
開發者ID:yunsite,項目名稱:demila,代碼行數:31,代碼來源:comments.php


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