首页
Web开发
Windows程序
编程语言
数据库
移动开发
系统相关
微信
其他好文
会员
首页
>
Web开发
> 详细
一个做页面静态化的php类
时间:
2015-02-28 21:44:50
阅读:
186
评论:
0
收藏:
0
[点我收藏+]
标签:
页面静态化
php页面静态化类
<?phpnamespace Common;/* * * 功能:页面静态化的创建和删除 * 创建:当且仅当,一个页面需要被静态化并且还未静态化时。 * 删除:当且仅当,一个页面存在静态化页面并且需要被重新静态化时。 * * 作者:郭军周 * * 注 :本类基于ThinkPHP3.2,或者其他具有“单一入口且MVC模式”的其他php框架。 * * 使用方式:在Controller的构造方法中获取其对象;在Controller的销毁方法里,用其对象的_static方法。 * 例:XXXController extends BaseController. * BaseController: * function __construct(){ * $this->__sh = StaticHtml::getInstance(); * } * function __destruct(){ * $this->__sh->_static(); * } * * */class StaticHtml{ private static $_instance = null; /* 单例模式,自身的引用 */ private $_needStatic = false; /* 是否需要将其静态化 */ private $_needDeleteStatic = false; /* 是否需要删除其静态化的页面 */ private $_hasStaticed = true; /* 是否存在其的静态化页面 */ private $_controller = null; /* 当前被访问的controller */ private $_action = null; /* 当前被访问的action */// private $_staticAgain = false; /* 删除静态文件后,是否马上重新更新【【注意】再次请求】 */ private $_save_path = null; /* 将要创建或者删除的静态文件的路径 */ private $_conf = array( /* 此文件定义一些静态文件的存放方式 */ ‘files_per_directory‘ => 100 /* 此值不允许被修改,除非是要删除所有已经存在的静态文件,重新缓存 */ ); private $_staticList = array( /* 此数组,定义了需要创建静态化页面的Controller的action */// ‘Base‘ => array( /* Base为controller name */// ‘aaa‘ => array( /* aaa为action name */// ‘save_path‘ => ‘/StaticHtml/Base/aaa/‘, /* save_path为生成的静态文件存放的根路径 */// ‘static_base‘ => ‘id‘, /* static_base为生成静态文件的“依据”。建议为对应数据库的primary_key */// ‘alias‘ => ‘aaa‘ /* 静态文件的名字,否则为1.html */// )// ) ); private $_deleteList = array( /* 此数组,定义了需要删除某些静态化页面的Controller的action */// ‘Base‘ => array( /* Base为controller name */// ‘bbb‘ => array( /* bbb为action name */// ‘save_path‘ => ‘/StaticHtml/Base/aaa/‘, /* save_path为要删除的静态文件存放的根路径 */// ‘static_base‘ => ‘id‘, /* static_base为确定静态文件路径的“依据”。建议为对应数据库的primary_key */// ‘alias‘ => ‘aaa‘ /* 静态文件的名字,否则为1.html */// )// ) ); private function __construct(){ $this->needStatic(); /* 确定本次请求是否需要静态化 */ $this->hasStaticed(); /* 确定本次请求是否已经存在静态化页面 */ $this->needDeleteStatic(); /* 确定本次请求是否需要删除某些静态页面 */ } /* 确定需要删除的静态文件的存放路径 */ private function needDeleteStatic(){ if($this->_needDeleteStatic){ $save_path = $this->getSavePath($this->_deleteList[$this->_controller][$this->_action]); $this->_hasStaticed = false; if(file_exists(ROOT_PATH.$save_path)){ $this->_hasStaticed = true; }// $this->_staticAgain = $this->_deleteList[$this->_controller][$this->_action][‘visitAgain‘]; $this->_save_path = ROOT_PATH.$save_path; } } /* 获取本类的,唯一的,实例化 */ public static function getInstance(){ if(!(self::$_instance instanceof self)){ self::$_instance = new self(); } return self::$_instance; } /* 判断是否存在其静态化的文件 */ private function hasStaticed(){ if($this->_needStatic){ $save_path = $this->getSavePath($this->_staticList[$this->_controller][$this->_action]); if(!file_exists(ROOT_PATH.$save_path)){ $this->_hasStaticed = false; ob_start(); }else{ header("location: http://".$_SERVER[‘HTTP_HOST‘].dirname($_SERVER[‘SCRIPT_NAME‘]).$save_path); } $this->_save_path = ROOT_PATH.$save_path; } } /* 获取本次请求要生成或者删除的,静态化文件的路径 */ private function getSavePath($conf){ if(!isset($conf[‘static_base‘])){ $save_path = $conf[‘save_path‘]; $save_path .= $conf[‘alias‘].‘.html‘; }else{ if($conf[‘static_base‘] == ‘user_id‘){ $id = (int)$_SESSION[‘logined_user‘][‘id‘]; }else{ if(IS_GET){ $id = $_GET[$conf[‘static_base‘]]; }else{ $id = $_POST[$conf[‘static_base‘]]; } } $save_path = $conf[‘save_path‘]; $directory_id = ceil($id/$this->_conf[‘files_per_directory‘]); $save_path .= $directory_id.‘/‘; if($conf[‘alias‘]){ $fileName = $conf[‘alias‘].‘-‘; } $fileName .= $id.‘.html‘; $save_path .= $fileName; } return $save_path; } /* 确定本次请求,是否需要生成静态化文件 */ private function needStatic(){ $url = explode(‘/‘,__ACTION__); $this->_controller = $url[4]; $this->_action = $url[5]; if(isset($this->_staticList[$this->_controller]) && isset($this->_staticList[$this->_controller][$this->_action])){ $this->_needStatic = true; } if(isset($this->_deleteList[$this->_controller]) && isset($this->_deleteList[$this->_controller][$this->_action])){ $this->_needDeleteStatic = true; } } /* 生成,或者删除,静态化文件 */ public function _static(){ if($this->_needStatic && !$this->_hasStaticed){ $html = ob_get_contents(); $this->_mkdir(dirname($this->_save_path)); file_put_contents($this->_save_path,$html); } if($this->_needDeleteStatic && $this->_hasStaticed){ unlink($this->_save_path); /*if($this->_staticAgain){ header("location: http://www.baidu.com");// header("location: http://".$_SERVER[‘HTTP_HOST‘].‘/‘.$_SERVER[‘REQUEST_URI‘]); }*/ } } /* 创建目录 */ private function _mkdir($path){ if (!file_exists($path)){ $this->_mkdir(dirname($path)); mkdir($path, 0777); } }}?>
一个做页面静态化的php类
标签:
页面静态化
php页面静态化类
原文地址:http://blog.csdn.net/u014290054/article/details/43988725
踩
(
0
)
赞
(
0
)
举报
评论
一句话评论(
0
)
登录后才能评论!
分享档案
更多>
2021年07月29日 (22)
2021年07月28日 (40)
2021年07月27日 (32)
2021年07月26日 (79)
2021年07月23日 (29)
2021年07月22日 (30)
2021年07月21日 (42)
2021年07月20日 (16)
2021年07月19日 (90)
2021年07月16日 (35)
周排行
更多
36.VUE — 认识 Webpack 和 安装
2021-07-28
【PHP】上传图片翻转问题
2021-07-28
php对数字进行万。亿的转化
2021-07-28
五个 .NET 性能小贴士
2021-07-28
Three.js中显示坐标轴、平面、球体、四方体
2021-07-28
.net 5+ 知新:【1】 .Net 5 基本概念和开发环境搭建
2021-07-27
1.html,css
2021-07-27
基于Docker搭建 Php-fpm + Nginx 环境
2021-07-27
nginx + http + svn
2021-07-27
kubernets kube-proxy的代理 iptables和ipvs
2021-07-26
友情链接
兰亭集智
国之画
百度统计
站长统计
阿里云
chrome插件
新版天听网
关于我们
-
联系我们
-
留言反馈
© 2014
mamicode.com
版权所有 联系我们:gaon5@hotmail.com
迷上了代码!