本文整理匯總了PHP中rating::unread_request方法的典型用法代碼示例。如果您正苦於以下問題:PHP rating::unread_request方法的具體用法?PHP rating::unread_request怎麽用?PHP rating::unread_request使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類rating
的用法示例。
在下文中一共展示了rating::unread_request方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: rating
<?php
require_once 'config.php';
require_once 'class/rating.php';
//$user_id = ($_SESSION['userinfo']->id != '' ? $_SESSION['userinfo']->id: 0);
//echo "<pre>";print_r($_SESSION);exit;
$renderObj = new rating();
$all_member = $renderObj->get_request($_GET["id"]);
$renderObj->unread_request($_GET["id"]);
$get_comment = $renderObj->get_comment_detail($_GET["id"]);
$get_rating = $renderObj->get_rating_detail($_GET["id"]);
if (!empty($get_comment)) {
$comment_text = $get_comment['comment_text'];
} else {
$comment_text = '';
}
if (!empty($get_rating)) {
$rating_chk = $get_rating['rating'];
} else {
$default_rate = $renderObj->get_work_details($all_member[0]['work_id']);
if (isset($default_rate['request_for'])) {
$rating_chk = $default_rate['request_for'];
} else {
$rating_chk = 'no';
}
}
//echo $rating_chk;
//echo "<pre>";print_r($all_member);exit;
require_once 'header.php';
?>
<style>