php实现的CSS更新类实例
2015-01-24信息快讯网
这篇文章主要介绍了php实现的CSS更新类及其用法实例,包括了针对模板文件的检查、更新与替换模板文件等功能,非常实用,需要的朋友可以参考下
本文实例讲述了php实现的CSS更新类及其用法,非常实用。分享给大家供大家参考。具体如下:
CSSUpdate.class.php类文件如下:
<?php /** css 更新类,更新css文件内图片的版本 * Date: 2013-02-05 * Author: fdipzone * Ver: 1.1 * * Func: * update(); * * Ver: 1.1 增加search_child参数,可遍历子文件夹 */ class CSSUpdate{ private $csstmpl_path = null; private $css_path = null; private $replacetags = array(); private $search_child = false; private $convert_num = 0; private $is_ready = 0; /** 初始化 * @param String $csstmpl_path css模版路径 * @param String $css_path css目标路径 * @param Array $replacetags 需要替换的图片类型 * @param boolean $search_child 是否遍历子文件夹,默认false */ public function __construct($csstmpl_path, $css_path, $replacetags=array(), $search_child=false){ if(!is_dir($csstmpl_path) || !is_dir($css_path) || !$replacetags){ $this->is_ready = 0; }else{ $this->csstmpl_path = $csstmpl_path; $this->css_path = $css_path; $this->replacetags = $replacetags; $this->search_child = $search_child; $this->is_ready = 1; } } /** 更新css文件 */ public function update(){ if($this->is_ready==0){ $this->response('csstmpl or csspath or replacetags error'); return ''; } $this->traversing($this->csstmpl_path); $this->response('covert num:'.$this->convert_num); } /** 遍历文件夹 * @param String $path 文件路径 */ private function traversing($path){ $handle = opendir($path); while(($file=readdir($handle))!==false){ if($file!='..' && $file!='.'){ $curfile = $path.'/'.$file; if(is_dir($curfile)){ // folder if($this->search_child){ // 需要遍历子文件夹 $this->traversing($curfile); } }elseif($this->checkExt($curfile)){ // css file $dfile = str_replace($this->csstmpl_path, $this->css_path, $curfile); $this->create($curfile, $dfile); $this->response($curfile.' convert to '.$dfile.' success'); $this->convert_num ++; } } } closedir($handle); } /** 检查文件后缀 */ private function checkExt($file){ $name = basename($file); $namefrag = explode('.', $name); if(count($namefrag)>=2){ if(strtolower($namefrag[count($namefrag)-1])=='css'){ // css文件 return true; } } return false; } /** 替换模版内容,写入csspath * @param String $tmplfile 模版文件 * @param String $dfile 目标文件 */ private function create($tmplfile, $dfile){ $css_content = file_get_contents($tmplfile); foreach($this->replacetags as $tag){ $css_content = str_replace($tag, $tag."?".date('YmdHis'), $css_content); } if(!is_dir(dirname($dfile))){ // 生成目标路径 mkdir(dirname($dfile), 0755, true); } file_put_contents($dfile, $css_content, true); } /** 输出 */ private function response($content){ echo $content."<br>"; } } ?>
demo示例程序如下:
<?php require_once "CSSUpdate.class.php"; define('ROOT_PATH', dirname(__FILE__)); $css_path = ROOT_PATH.'/css'; $csstmpl_path = ROOT_PATH.'/csstmpl'; $replacetags = array('.png', '.jpg', '.gif'); $cssobj = new CSSUpdate($csstmpl_path, $css_path, $replacetags); $cssobj->update(); ?>
完整源码点击此处本站下载。
希望本文所述对大家PHP程序设计的学习有所帮助。
php使用正则表达式获取图片url的方法
php使用CURL伪造IP和来源实例详解
php+mysql实现无限分类实例详解
php截取html字符串及自动补全html标签的方法
php在linux下检测mysql同步状态的方法
php正则匹配html中带class的div并选取其中内容的方法
php的sso单点登录实现方法
PHP中调用SVN命令更新网站方法
php读取mssql的ntext字段返回值为空的解决方法
php查询mssql出现乱码的解决方法
VPS中使用LNMP安装WordPress教程
php更新mysql后获取改变行数的方法
PHP采集静态页面并把页面css,img,js保存的方法
php批量添加数据与批量更新数据的实现方法
ThinkPHP添加更新标签的方法
php获取CSS文件中图片地址并下载到本地的方法
ThinkPHP模版中导入CSS和JS文件的方法
php实现的css文件背景图片下载器代码
php实现压缩多个CSS与JS文件的方法
PHP+jQuery 注册模块的改进(三):更新到Smarty3.1
PHP邮件发送类PHPMailer用法实例详解
php的XML文件解释类应用实例
php实现的返回数据格式化类实例
php实现的替换敏感字符串类实例
php实现的发送带附件邮件类实例
PHP实现AES256加密算法实例
php使用$_POST或$_SESSION[]向js函数传参
PHP利用MySQL保存session的实现思路及示例代码
thinkphp在模型中自动完成session赋值示例代码
如何让thinkphp在模型中自动完成session赋值小教程
使用YUI+Ant 实现JS CSS压缩
PHP实现更新中间关联表数据的两种方法
PHP针对常规模板引擎中与CSS/JSON冲突的解决方法
php ci框架中加载css和js文件失败的原因及解决方法
Codeigniter框架的更新事务(transaction)BUG及解决方法
Discuz批量替换帖子内容的方法(使用SQL更新数据库)
PHP根据传入参数合并多个JS和CSS文件的简单实现
PHP定时更新程序设计思路分享
PHP小技巧之JS和CSS优化工具Minify的使用方法