• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP Smarty_CacheResource类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中Smarty_CacheResource的典型用法代码示例。如果您正苦于以下问题:PHP Smarty_CacheResource类的具体用法?PHP Smarty_CacheResource怎么用?PHP Smarty_CacheResource使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



在下文中一共展示了Smarty_CacheResource类的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: clearCache

 /**
  * Empty cache for a specific template
  *
  * @api  Smarty::clearCache()
  * @link http://www.smarty.net/docs/en/api.clear.cache.tpl
  *
  * @param \Smarty  $smarty
  * @param  string  $template_name template name
  * @param  string  $cache_id      cache id
  * @param  string  $compile_id    compile id
  * @param  integer $exp_time      expiration time
  * @param  string  $type          resource type
  *
  * @return integer number of cache files deleted
  */
 public function clearCache(Smarty $smarty, $template_name, $cache_id = null, $compile_id = null, $exp_time = null, $type = null)
 {
     $smarty->_clearTemplateCache();
     // load cache resource and call clear
     $_cache_resource = Smarty_CacheResource::load($smarty, $type);
     return $_cache_resource->clear($smarty, $template_name, $cache_id, $compile_id, $exp_time);
 }
开发者ID:yanlyan,项目名称:si_ibuhamil,代码行数:22,代码来源:smarty_internal_method_clearcache.php


示例2: clearAllCache

 /**
  * Empty cache folder
  *
  * @api  Smarty::clearAllCache()
  * @link http://www.smarty.net/docs/en/api.clear.all.cache.tpl
  *
  * @param \Smarty  $smarty
  * @param  integer $exp_time expiration time
  * @param  string  $type     resource type
  *
  * @return integer number of cache files deleted
  */
 public function clearAllCache(Smarty $smarty, $exp_time = null, $type = null)
 {
     $smarty->_clearTemplateCache();
     // load cache resource and call clearAll
     $_cache_resource = Smarty_CacheResource::load($smarty, $type);
     return $_cache_resource->clearAll($smarty, $exp_time);
 }
开发者ID:LEXXiY,项目名称:devschool,代码行数:19,代码来源:smarty_internal_method_clearallcache.php


示例3: clearAllCache

 /**
  * Empty cache folder
  *
  * @api  Smarty::clearAllCache()
  * @link http://www.MVC.net/docs/en/api.clear.all.cache.tpl
  *
  * @param \Smarty  $smarty
  * @param  integer $exp_time expiration time
  * @param  string  $type     resource type
  *
  * @return integer number of cache files deleted
  */
 public function clearAllCache(Smarty $smarty, $exp_time = null, $type = null)
 {
     // load cache resource and call clearAll
     $_cache_resource = Smarty_CacheResource::load($smarty, $type);
     $_cache_resource->invalidLoadedCache($smarty);
     return $_cache_resource->clearAll($smarty, $exp_time);
 }
开发者ID:nnqx,项目名称:Jianbing_PHP,代码行数:19,代码来源:smarty_internal_method_clearallcache.php


示例4: setUp

 public function setUp()
 {
     $this->smarty = SmartyTests::$smarty;
     $this->smartyBC = SmartyTests::$smartyBC;
     // reset cache for unit test
     Smarty_CacheResource::$resources = array();
     SmartyTests::init();
 }
开发者ID:mrsank,项目名称:work_sample,代码行数:8,代码来源:CacheResourceFileTests.php


示例5: clearCache

 /**
  * Empty cache for a specific template
  *
  * @api  Smarty::clearCache()
  * @link http://www.smarty.net/docs/en/api.clear.cache.tpl
  *
  * @param \Smarty  $smarty
  * @param  string  $template_name template name
  * @param  string  $cache_id      cache id
  * @param  string  $compile_id    compile id
  * @param  integer $exp_time      expiration time
  * @param  string  $type          resource type
  *
  * @return integer number of cache files deleted
  */
 public function clearCache(Smarty $smarty, $template_name, $cache_id = null, $compile_id = null, $exp_time = null, $type = null)
 {
     // load cache resource and call clear
     $_cache_resource = Smarty_CacheResource::load($smarty, $type);
     if ($smarty->caching_type != 'file' && !isset($template_name)) {
         $_cache_resource->invalidLoadedCache($smarty);
     }
     return $_cache_resource->clear($smarty, $template_name, $cache_id, $compile_id, $exp_time);
 }
开发者ID:smart-com,项目名称:bike-cms,代码行数:24,代码来源:smarty_internal_method_clearcache.php


示例6: clearCache

 /**
  * Empty cache for a specific template
  *
  * @param string  $template_name template name
  * @param string  $cache_id      cache id
  * @param string  $compile_id    compile id
  * @param integer $exp_time      expiration time
  * @param string  $type          resource type
  * @return integer number of cache files deleted
  */
 public function clearCache($template_name, $cache_id = null, $compile_id = null, $exp_time = null, $type = null)
 {
     // load cache resource and call clear
     $_cache_resource = Smarty_CacheResource::load($this, $type);
     Smarty_CacheResource::invalidLoadedCache($this);
     return $_cache_resource->clear($this, $template_name, $cache_id, $compile_id, $exp_time);
 }
开发者ID:asd123freedom,项目名称:DragAndDrop,代码行数:17,代码来源:Smarty.class.php


示例7: clearCache

 /**
  * Empty cache for this template
  *
  * @param integer $exp_time      expiration time
  * @return integer number of cache files deleted
  */
 public function clearCache($exp_time = null)
 {
     Smarty_CacheResource::invalidLoadedCache($this->smarty);
     return $this->cached->handler->clear($this->smarty, $this->template_name, $this->cache_id, $this->compile_id, $exp_time);
 }
开发者ID:Tipkin-Commons,项目名称:tipkin,代码行数:11,代码来源:smarty_internal_template.php


示例8: clearCache

 /**
  * Empty cache for a specific template
  *
  * @param string  $template_name template name
  * @param string  $cache_id      cache id
  * @param string  $compile_id    compile id
  * @param integer $exp_time      expiration time
  * @param string  $type          resource type
  * @return integer number of cache files deleted
  */
 public function clearCache($template_name, $cache_id = null, $compile_id = null, $exp_time = null, $type = null)
 {
     Smarty::muteExpectedErrors();
     // load cache resource and call clear
     $_cache_resource = Smarty_CacheResource::load($this, $type);
     Smarty_CacheResource::invalidLoadedCache($this);
     $t = $_cache_resource->clear($this, $template_name, $cache_id, $compile_id, $exp_time);
     Smarty::unmuteExpectedErrors();
     return $t;
 }
开发者ID:harmofwk,项目名称:harmofwk,代码行数:20,代码来源:Smarty.class.php


示例9: __construct

 public function __construct(Smarty_Internal_Template $_template)
 {
     $this->compile_id = $_template->compile_id;
     $this->cache_id = $_template->cache_id;
     $this->source = $_template->source;
     $_template->cached = $this;
     $smarty = $_template->smarty;
     $this->handler = $handler = Smarty_CacheResource::load($smarty);
     if (!($_template->caching == Smarty::CACHING_LIFETIME_CURRENT || $_template->caching == Smarty::CACHING_LIFETIME_SAVED) || $_template->source->recompiled) {
         $handler->populate($this, $_template);
         return;
     }
     while (true) {
         while (true) {
             $handler->populate($this, $_template);
             if ($this->timestamp === false || $smarty->force_compile || $smarty->force_cache) {
                 $this->valid = false;
             } else {
                 $this->valid = true;
             }
             if ($this->valid && $_template->caching == Smarty::CACHING_LIFETIME_CURRENT && $_template->cache_lifetime >= 0 && time() > $this->timestamp + $_template->cache_lifetime) {
                 $this->valid = false;
             }
             if ($this->valid || !$_template->smarty->cache_locking) {
                 break;
             }
             if (!$this->handler->locked($_template->smarty, $this)) {
                 $this->handler->acquireLock($_template->smarty, $this);
                 break 2;
             }
         }
         if ($this->valid) {
             if (!$_template->smarty->cache_locking || $this->handler->locked($_template->smarty, $this) === null) {
                 if ($smarty->debugging) {
                     Smarty_Internal_Debug::start_cache($_template);
                 }
                 if ($handler->process($_template, $this) === false) {
                     $this->valid = false;
                 } else {
                     $this->processed = true;
                 }
                 if ($smarty->debugging) {
                     Smarty_Internal_Debug::end_cache($_template);
                 }
             } else {
                 continue;
             }
         } else {
             return;
         }
         if ($this->valid && $_template->caching === Smarty::CACHING_LIFETIME_SAVED && $_template->properties['cache_lifetime'] >= 0 && time() > $_template->cached->timestamp + $_template->properties['cache_lifetime']) {
             $this->valid = false;
         }
         if (!$this->valid && $_template->smarty->cache_locking) {
             $this->handler->acquireLock($_template->smarty, $this);
             return;
         } else {
             return;
         }
     }
 }
开发者ID:admpub,项目名称:MicroPHP,代码行数:61,代码来源:~Runtime.php


示例10: read

 /**
  * Read cache content from handler
  *
  * @param Smarty_Internal_Template $_template template object
  *
  * @return string|false content
  */
 public function read(Smarty_Internal_Template $_template)
 {
     if (!$_template->source->handler->recompiled) {
         return $this->handler->readCachedContent($_template);
     }
     return false;
 }
开发者ID:thekabal,项目名称:tki,代码行数:14,代码来源:smarty_template_cached.php


示例11: write

 /**
  * Write this cache object to handler
  * @param Smarty_Internal_Template $_template template object
  * @param string $content content to cache
  * @return boolean success
  */
 public function write(Smarty_Internal_Template $_template, $content)
 {
     if (!$_template->source->recompiled) {
         if ($this->handler->writeCachedContent($_template, $content)) {
             $this->content = NULL;
             $this->timestamp = time();
             $this->exists = TRUE;
             $this->valid = TRUE;
             $this->processed = FALSE;
             if ($_template->smarty->cache_locking) {
                 $this->handler->releaseLock($_template->smarty, $this);
             }
             return TRUE;
         }
         $this->content = NULL;
         $this->timestamp = FALSE;
         $this->exists = FALSE;
         $this->valid = FALSE;
         $this->processed = FALSE;
     }
     return FALSE;
 }
开发者ID:rendix2,项目名称:QW_MVS,代码行数:28,代码来源:smarty_template_cached.php


示例12: write

 /**
  * Write this cache object to handler
  *
  * @param Smarty_Internal_Template $_template template object
  * @param string $content content to cache
  * @return boolean success
  */
 public function write(Smarty_Internal_Template $_template, $content)
 {
     if (!$_template->source->recompiled) {
         if ($this->handler->writeCachedContent($_template, $content)) {
             $this->timestamp = time();
             $this->exists = true;
             $this->valid = true;
             if ($_template->smarty->cache_locking) {
                 $this->handler->releaseLock($_template->smarty, $this);
             }
             return true;
         }
     }
     return false;
 }
开发者ID:rezarahimi4861,项目名称:icmf,代码行数:22,代码来源:smarty_cacheresource.php



注:本文中的Smarty_CacheResource类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP Smarty_Internal_Compile_Block类代码示例发布时间:2022-05-23
下一篇:
PHP Smarty_Autoloader类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap