本文整理匯總了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];
}