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