本文整理匯總了PHP中CampCache::IsSupported方法的典型用法代碼示例。如果您正苦於以下問題:PHP CampCache::IsSupported方法的具體用法?PHP CampCache::IsSupported怎麽用?PHP CampCache::IsSupported使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類CampCache
的用法示例。
在下文中一共展示了CampCache::IsSupported方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1:
// Site title
SystemPref::Set('SiteTitle', $f_site_title);
// Site Meta Keywords
SystemPref::Set('SiteMetaKeywords', $f_site_metakeywords);
// Site Meta Description
SystemPref::Set('SiteMetaDescription', $f_site_metadescription);
// Site Time Zone
SystemPref::Set('TimeZone', $f_time_zone);
// DB Caching
if (SystemPref::Get('DBCacheEngine') != $f_cache_engine) {
if (!$f_cache_engine || CampCache::IsSupported($f_cache_engine)) {
SystemPref::Set('DBCacheEngine', $f_cache_engine);
CampCache::singleton()->clear('user');
CampCache::singleton()->clear();
} else {
$msg_ok = 0;
camp_html_add_msg(getGS('Invalid: You need PHP $1 enabled in order to use the caching system.', $f_cache_engine));
}
}
// Template Caching
if (SystemPref::Get('TemplateCacheHandler') != $f_template_cache_handler && $f_template_cache_handler) {
$handler = CampTemplateCache::factory($f_template_cache_handler);
if ($handler && CampTemplateCache::factory($f_template_cache_handler)->isSupported()) {
SystemPref::Set('TemplateCacheHandler', $f_template_cache_handler);
CampTemplateCache::factory($f_template_cache_handler)->clean();