本文整理汇总了PHP中rating::CountByRank方法的典型用法代码示例。如果您正苦于以下问题:PHP rating::CountByRank方法的具体用法?PHP rating::CountByRank怎么用?PHP rating::CountByRank使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类rating
的用法示例。
在下文中一共展示了rating::CountByRank方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: header
$rpath = '../';
$stretch_page = true;
header('Location: /404.php');
exit;
require_once $_SERVER['DOCUMENT_ROOT'] . "/classes/stdf.php";
require_once $_SERVER['DOCUMENT_ROOT'] . "/classes/rating.php";
session_start();
if (!($rank = __paramInit('int', 'rank')) || $rank > rating::MAX_RANK || $rank <= 0) {
header('Location: /404.php');
exit;
}
$page = __paramInit('int', 'page', NULL, 1);
if ($page < 1) {
$page = 1;
}
$COLCNT = 3;
$ROWCNT = 20;
$limit = $COLCNT * $ROWCNT;
$offset = ($page - 1) * $limit;
$count = rating::CountByRank($rank);
if ($count) {
if ($offset > $count) {
header_location_exit('/404.php');
}
$users = rating::GetByRank($rank, $limit, $offset);
}
$header = "../header.php";
$content = "content.php";
$content_bgcolor = '#ffffff';
$footer = "../footer.html";
include "../template.php";