本文整理汇总了PHP中cache::getLogsCount方法的典型用法代码示例。如果您正苦于以下问题:PHP cache::getLogsCount方法的具体用法?PHP cache::getLogsCount怎么用?PHP cache::getLogsCount使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cache
的用法示例。
在下文中一共展示了cache::getLogsCount方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
}
$tpl->assign('enableCacheNote', $login->userid != 0);
/* Logentries */
/* begin insertion/change Uwe 20091215 for printing purposes
reworked on 20100106 for better performance after Olivers intervention
*/
// See how many logs are in the db for the cache if logprinting is selected
// If not or just five logs may printed, the system will set this fixed values for calling the DB.
$rscount = 99;
//Preset the value
$rsreturn = array(88);
//Preset the value
if (isset($_REQUEST['log']) && $_REQUEST['log'] == 'N') {
$rscount = 0;
} elseif (isset($_REQUEST['log']) && $_REQUEST['log'] == 'A') {
$rsreturn = cache::getLogsCount($cacheid);
$rscount = current($rsreturn);
} else {
$rscount = 5;
}
$tpl->assign('logcount', $rscount);
$logs = cache::getLogsArray($cacheid, 0, $rscount);
if (isset($logs[$rscount - 1])) {
unset($logs[$rscount - 1]);
$tpl->assign('showalllogs', true);
}
$loganz = sizeof($logs);
$tpl->assign('logs', $logs);
$tpl->assign('loganz', $loganz);
/*end insertion Uwe 20091215*/
/* nature protection areas
示例2: switch
$cacheNotePresenter->prepare($tpl);
}
$tpl->assign('enableCacheNote', $login->userid != 0);
/* Logentries */
/* begin insertion/change Uwe 20091215 for printing purposes
reworked on 20100106 for better performance after Olivers intervention
rewritten 2012-07-22 following for bugfix, first log was lost in print
*/
$rscount = MAX_LOGENTRIES_ON_CACHEPAGE;
if (isset($_REQUEST['log'])) {
switch ($_REQUEST['log']) {
case 'N':
$rscount = 0;
break;
case 'A':
$rscount = current(cache::getLogsCount($cacheid));
// This option is also used when referencing logs, e.g. from log lists
// and picture galleries.
break;
default:
// This is currently used only for the print view function
// with parameters 5 or 10.
if ($_REQUEST['log'] >= 0 && $_REQUEST['log'] <= 100) {
$rscount = $_REQUEST['log'] + 0;
}
}
}
$logs = cache::getLogsArray($cacheid, 0, $rscount + 1);
if (isset($logs[$rscount])) {
unset($logs[$rscount]);
$tpl->assign('morelogs', true);