本文整理汇总了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();