本文整理汇总了PHP中CacheHandler::getExternal方法的典型用法代码示例。如果您正苦于以下问题:PHP CacheHandler::getExternal方法的具体用法?PHP CacheHandler::getExternal怎么用?PHP CacheHandler::getExternal使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CacheHandler
的用法示例。
在下文中一共展示了CacheHandler::getExternal方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getPortraitURL
/**
* Return the URL for the alliance's portrait. If the alliance has a
* portrait in the board's img/alliances directory, that portrait will be
* used
*
* @param integer $size The desired portrait size.
* @return string URL for a portrait.
*/
function getPortraitURL($size = 128)
{
if (isset($this->imgurl[$size])) {
return $this->imgurl[$size];
}
if (file_exists("img/alliances/" . $this->getUnique() . ".png")) {
if ($size == 128) {
$this->imgurl[$size] = IMG_HOST . "/img/alliances/" . $this->getUnique() . ".png";
} else {
if (CacheHandler::exists($this->getUnique() . "_{$size}.png", 'img')) {
$this->imgurl[$size] = KB_HOST . "/" . CacheHandler::getExternal($this->getUnique() . "_{$size}.png", 'img');
} else {
$this->imgurl[$size] = KB_HOST . '/?a=thumb&type=alliance&id=' . $this->getUnique() . '&size=' . $size;
}
}
$this->putCache();
} else {
if ($this->getExternalID()) {
$this->imgurl[$size] = imageURL::getURL('Alliance', $this->getExternalID(), $size);
$this->putCache();
} else {
$this->imgurl[$size] = imageURL::getURL('Alliance', 1, $size);
}
}
return $this->imgurl[$size];
}