本文整理匯總了PHP中Bitrix\Main\Data\Cache::setShowCacheStat方法的典型用法代碼示例。如果您正苦於以下問題:PHP Cache::setShowCacheStat方法的具體用法?PHP Cache::setShowCacheStat怎麽用?PHP Cache::setShowCacheStat使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Bitrix\Main\Data\Cache
的用法示例。
在下文中一共展示了Cache::setShowCacheStat方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: restoreDebugMode
public static function restoreDebugMode()
{
global $DB, $APPLICATION;
$toRestore = explode("|", constant("PERFMON_STARTED"));
$DB->ShowSqlStat = $toRestore[0];
\Bitrix\Main\Data\Cache::setShowCacheStat($toRestore[1]);
$APPLICATION->ShowIncludeStat = $toRestore[2];
}
示例2: initializeCache
protected function initializeCache()
{
//TODO: Should be transfered to where GET parameter is defined in future
//magic parameters: show cache usage statistics
$show_cache_stat = "";
if (isset($_GET["show_cache_stat"])) {
$show_cache_stat = strtoupper($_GET["show_cache_stat"]) == "Y" ? "Y" : "";
@setcookie("show_cache_stat", $show_cache_stat, false, "/");
} elseif (isset($_COOKIE["show_cache_stat"])) {
$show_cache_stat = $_COOKIE["show_cache_stat"];
}
Data\Cache::setShowCacheStat($show_cache_stat === "Y");
if (isset($_GET["clear_cache_session"])) {
Data\Cache::setClearCacheSession($_GET["clear_cache_session"] === 'Y');
}
if (isset($_GET["clear_cache"])) {
Data\Cache::setClearCache($_GET["clear_cache"] === 'Y');
}
}