当前位置: 首页>>代码示例>>PHP>>正文


PHP cache::getLogsCount方法代码示例

本文整理汇总了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
开发者ID:RH-Code,项目名称:opencaching,代码行数:31,代码来源:viewcache.php

示例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);
开发者ID:PaulinaKowalczuk,项目名称:oc-server3,代码行数:31,代码来源:viewcache.php


注:本文中的cache::getLogsCount方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。