12345678910111213141516171819202122232425 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2006-2014 http://thinkphp.cn All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
- // +----------------------------------------------------------------------
- // | Author: liu21st <liu21st@gmail.com>
- // +----------------------------------------------------------------------
- namespace Behavior;
- use Think\Storage;
- /**
- * 系统行为扩展:静态缓存写入
- */
- class WriteHtmlCacheBehavior {
- // 行为扩展的执行入口必须是run
- public function run(&$content){
- if(C('HTML_CACHE_ON') && defined('HTML_FILE_NAME')) {
- //静态文件写入
- Storage::put(HTML_FILE_NAME , $content,'html');
- }
- }
- }
|