本文整理匯總了PHP中CacheHandler::age方法的典型用法代碼示例。如果您正苦於以下問題:PHP CacheHandler::age方法的具體用法?PHP CacheHandler::age怎麽用?PHP CacheHandler::age使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類CacheHandler
的用法示例。
在下文中一共展示了CacheHandler::age方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: errorPic
$plt_ext_id = $plt_id;
}
if (!$pilot->exists()) {
errorPic('That pilot doesnt exist.');
}
$corp = $pilot->getCorp();
$alliance = $corp->getAlliance();
// we dont generate pictures for non-members
if (array_search($alliance->getID(), config::get('cfg_allianceid')) === false && !array_search($corp->getID(), config::get('cfg_corpid')) === false && !array_search($pilot->getID(), config::get('cfg_pilotid')) === false) {
errorPic('Invalid pilot');
}
$id = abs(crc32($sig_name));
// check for cached version
if (file_exists(CacheHandler::exists("{$plt_ext_id}_sig_{$id}.jpg", 'img'))) {
// cache files for 120 minutes
if (time() - CacheHandler::age("{$plt_ext_id}_sig_{$id}.jpg", 'img') < 120 * 60 || lastKill($plt_id) > 120 * 60) {
if (isset($_SERVER['HTTP_IF_NONE_MATCH']) || isset($_SERVER['HTTP_IF_MODIFIED_SINCE'])) {
header($_SERVER["SERVER_PROTOCOL"] . " 304 Not Modified");
die;
} else {
header('Content-Type: image/jpeg');
readfile(CacheHandler::get("{$plt_ext_id}_sig_{$id}.jpg", 'img'));
die;
}
}
}
$pid = $pilot->getExternalID();
$cachePath = $pilot->getPortraitPath(256);
$thumb = new thumb($pid, 256);
if (!$thumb->isCached()) {
$thumb->genCache();