当前位置:首页 > PHP教程 > php应用 > 列表

php实现压缩多个CSS与JS文件的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-04-25 13:46:31 浏览: 评论:0 

这篇文章主要介绍了php实现压缩多个CSS与JS文件的方法,通过两个完整实例分别实现了针对css文件与js文件的压缩,需要的朋友可以参考下

本文实例讲述了php实现压缩多个CSS与JS文件的方法。分享给大家供大家参考。具体实现方法如下:

1. 压缩css,代码如下:

  1. <?php    
  2. header('Content-type: text/css');    
  3. ob_start("compress");    
  4. function compress($buffer) {    
  5.     /* remove comments */    
  6.     $buffer = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!'''$buffer);    
  7.     /* remove tabs, spaces, newlines, etc. */    
  8.     $buffer = str_replace(array("\r\n""\r""\n""\t"'  ''    ''    '), ''$buffer);    
  9.     return $buffer;    
  10. }     //www.phpfensi.com 
  11.     
  12. /* your css files */    
  13. include('galleria.css');    
  14. include('articles.css');    
  15.     
  16. ob_end_flush(); 

使用方法如下:

  1. <link href="compress.php" rel="stylesheet" type="text/css" /><span id="tester">test</span> 

2. 压缩js,利用jsmin类:

本实例源自:http://code.google.com/p/minify/ 代码如下:

  1. header('Content-type: text/javascript');    
  2. require 'jsmin.php';    
  3. echo JSMin::minify(file_get_contents('common.js') . file_get_contents('common2.js')); 

其中jsmin.php文件如下:

  1. <?php 
  2. /** 
  3.  * jsmin.php - PHP implementation of Douglas Crockford's JSMin. 
  4.  * 
  5.  * This is pretty much a direct port of jsmin.c to PHP with just a few 
  6.  * PHP-specific performance tweaks. Also, whereas jsmin.c reads from stdin and 
  7.  * outputs to stdout, this library accepts a string as input and returns another 
  8.  * string as output. 
  9.  * 
  10.  * PHP 5 or higher is required. 
  11.  * 
  12.  * Permission is hereby granted to use this version of the library under the 
  13.  * same terms as jsmin.c, which has the following license: 
  14.  * 
  15.  * -- 
  16.  * Copyright (c) 2002 Douglas Crockford  (www.crockford.com) 
  17.  * 
  18.  * Permission is hereby granted, free of charge, to any person obtaining a copy of 
  19.  * this software and associated documentation files (the "Software"), to deal in 
  20.  * the Software without restriction, including without limitation the rights to 
  21.  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
  22.  * of the Software, and to permit persons to whom the Software is furnished to do 
  23.  * so, subject to the following conditions: 
  24.  * 
  25.  * The above copyright notice and this permission notice shall be included in all 
  26.  * copies or substantial portions of the Software. 
  27.  * 
  28.  * The Software shall be used for Good, not Evil. 
  29.  * 
  30.  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
  31.  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
  32.  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
  33.  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
  34.  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
  35.  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
  36.  * SOFTWARE. 
  37.  * -- 
  38.  * 
  39.  * @package JSMin 
  40.  * @author Ryan Grove <ryan@wonko.com> 
  41.  * @copyright 2002 Douglas Crockford <douglas@crockford.com> (jsmin.c) 
  42.  * @copyright 2008 Ryan Grove <ryan@wonko.com> (PHP port) 
  43.  * @copyright 2012 Adam Goforth <aag@adamgoforth.com> (Updates) 
  44.  * @license http://opensource.org/licenses/mit-license.php MIT License 
  45.  * @version 1.1.2 (2012-05-01) 
  46.  * @link https://github.com/rgrove/jsmin-php 
  47.  */ 
  48. class JSMin { 
  49.   const ORD_LF            = 10; 
  50.   const ORD_SPACE         = 32; 
  51.   const ACTION_KEEP_A     = 1; 
  52.   const ACTION_DELETE_A   = 2; 
  53.   const ACTION_DELETE_A_B = 3; 
  54.   protected $a           = ''
  55.   protected $b           = ''
  56.   protected $input       = ''
  57.   protected $inputIndex  = 0; 
  58.   protected $inputLength = 0; 
  59.   protected $lookAhead   = null; 
  60.   protected $output      = ''
  61.   // -- Public Static Methods -------------------------------------------------- 
  62.   /** 
  63.    * Minify Javascript 
  64.    * 
  65.    * @uses __construct() 
  66.    * @uses min() 
  67.    * @param string $js Javascript to be minified 
  68.    * @return string 
  69.    */ 
  70.   public static function minify($js) { 
  71.     $jsmin = new JSMin($js); 
  72.     return $jsmin->min(); 
  73.   } 
  74.   // -- Public Instance Methods ------------------------------------------------ 
  75.   /** 
  76.    * Constructor 
  77.    * 
  78.    * @param string $input Javascript to be minified 
  79.    */ 
  80.   public function __construct($input) { 
  81.     $this->input       = str_replace("\r\n""\n"$input); 
  82.     $this->inputLength = strlen($this->input); 
  83.   } 
  84.   // -- Protected Instance Methods --------------------------------------------- 
  85.   /** 
  86.    * Action -- do something! What to do is determined by the $command argument. 
  87.    * 
  88.    * action treats a string as a single character. Wow! 
  89.    * action recognizes a regular expression if it is preceded by ( or , or =. 
  90.    * 
  91.    * @uses next() 
  92.    * @uses get() 
  93.    * @throws JSMinException If parser errors are found: 
  94.    *         - Unterminated string literal 
  95.    *         - Unterminated regular expression set in regex literal 
  96.    *         - Unterminated regular expression literal 
  97.    * @param int $command One of class constants: 
  98.    *      ACTION_KEEP_A      Output A. Copy B to A. Get the next B. 
  99.    *      ACTION_DELETE_A    Copy B to A. Get the next B. (Delete A). 
  100.    *      ACTION_DELETE_A_B  Get the next B. (Delete B). 
  101.   */ 
  102.   protected function action($command) { 
  103.     switch($command) { 
  104.       case self::ACTION_KEEP_A: 
  105.         $this->output .= $this->a; 
  106.       case self::ACTION_DELETE_A: 
  107.         $this->a = $this->b; 
  108.         if ($this->a === "'" || $this->a === '"') { 
  109.           for (;;) { 
  110.             $this->output .= $this->a; 
  111.             $this->a       = $this->get(); 
  112.             if ($this->a === $this->b) { 
  113.               break
  114.             } 
  115.             if (ord($this->a) <= self::ORD_LF) { 
  116.               throw new JSMinException('Unterminated string literal.'); 
  117.             } 
  118.             if ($this->a === '\\') { 
  119.               $this->output .= $this->a; 
  120.               $this->a       = $this->get(); 
  121.             } 
  122.           } 
  123.         } 
  124.       case self::ACTION_DELETE_A_B: 
  125.         $this->b = $this->next(); 
  126.         if ($this->b === '/' && ( 
  127.             $this->a === '(' || $this->a === ',' || $this->a === '=' || 
  128.             $this->a === ':' || $this->a === '[' || $this->a === '!' || 
  129.             $this->a === '&' || $this->a === '|' || $this->a === '?' || 
  130.             $this->a === '{' || $this->a === '}' || $this->a === ';' || 
  131.             $this->a === "\n" )) { 
  132.           $this->output .= $this->a . $this->b; 
  133.           for (;;) { 
  134.             $this->a = $this->get(); 
  135.             if ($this->a === '[') { 
  136.               /* 
  137.                 inside a regex [...] set, which MAY contain a '/' itself. Example: mootools Form.Validator near line 460: 
  138.                   return Form.Validator.getValidator('IsEmpty').test(element) || (/^(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]\.?){0,63}[a-z0-9!#$%&'*+/=?^_`{|}~-]@(?:(?:[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?\.)*[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?|\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\])$/i).test(element.get('value')); 
  139.               */ 
  140.               for (;;) { 
  141.                 $this->output .= $this->a; 
  142.                 $this->a = $this->get(); 
  143.                 if ($this->a === ']') { 
  144.                     break
  145.                 } elseif ($this->a === '\\') { 
  146.                   $this->output .= $this->a; 
  147.                   $this->a       = $this->get(); 
  148.                 } elseif (ord($this->a) <= self::ORD_LF) { 
  149.                   throw new JSMinException('Unterminated regular expression set in regex literal.'); 
  150.                 } 
  151.               } 
  152.             } elseif ($this->a === '/') { 
  153.               break
  154.             } elseif ($this->a === '\\') { 
  155.               $this->output .= $this->a; 
  156.               $this->a       = $this->get(); 
  157.             } elseif (ord($this->a) <= self::ORD_LF) { 
  158.               throw new JSMinException('Unterminated regular expression literal.'); 
  159.             } 
  160.             $this->output .= $this->a; 
  161.           } 
  162.           $this->b = $this->next(); 
  163.         } 
  164.     } 
  165.   } 
  166.   /** 
  167.    * Get next char. Convert ctrl char to space. 
  168.    * 
  169.    * @return string|null 
  170.    */ 
  171.   protected function get() { 
  172.     $c = $this->lookAhead; 
  173.     $this->lookAhead = null; 
  174.     if ($c === null) { 
  175.       if ($this->inputIndex < $this->inputLength) { 
  176.         $c = substr($this->input, $this->inputIndex, 1); 
  177.         $this->inputIndex += 1; 
  178.       } else { 
  179.         $c = null; 
  180.       } 
  181.     } 
  182.     if ($c === "\r") { 
  183.       return "\n"
  184.     } 
  185.     if ($c === null || $c === "\n" || ord($c) >= self::ORD_SPACE) { 
  186.       return $c
  187.     } 
  188.     return ' '
  189.   } 
  190.   /** 
  191.    * Is $c a letter, digit, underscore, dollar sign, or non-ASCII character. 
  192.    * 
  193.    * @return bool 
  194.    */ 
  195.   protected function isAlphaNum($c) { 
  196.     return ord($c) > 126 || $c === '\\' || preg_match('/^[\w\$]$/', $c) === 1; 
  197.   } 
  198.   /** 
  199.    * Perform minification, return result 
  200.    * 
  201.    * @uses action() 
  202.    * @uses isAlphaNum() 
  203.    * @uses get() 
  204.    * @uses peek() 
  205.    * @return string 
  206.    */ 
  207.   protected function min() { 
  208.     if (0 == strncmp($this->peek(), "\xef", 1)) { 
  209.         $this->get(); 
  210.         $this->get(); 
  211.         $this->get(); 
  212.     } 
  213.     $this->a = "\n"
  214.     $this->action(self::ACTION_DELETE_A_B); 
  215.     while ($this->a !== null) { 
  216.       switch ($this->a) { 
  217.         case ' '
  218.           if ($this->isAlphaNum($this->b)) { 
  219.             $this->action(self::ACTION_KEEP_A); 
  220.           } else { 
  221.             $this->action(self::ACTION_DELETE_A); 
  222.           } 
  223.           break
  224.         case "\n"
  225.           switch ($this->b) { 
  226.             case '{'
  227.             case '['
  228.             case '('
  229.             case '+'
  230.             case '-'
  231.             case '!'
  232.             case '~'
  233.               $this->action(self::ACTION_KEEP_A); 
  234.               break
  235.             case ' '
  236.               $this->action(self::ACTION_DELETE_A_B); 
  237.               break
  238.             default
  239.               if ($this->isAlphaNum($this->b)) { 
  240.                 $this->action(self::ACTION_KEEP_A); 
  241.               } 
  242.               else { 
  243.                 $this->action(self::ACTION_DELETE_A); 
  244.               } 
  245.           } 
  246.           break
  247.         default
  248.           switch ($this->b) { 
  249.             case ' '
  250.               if ($this->isAlphaNum($this->a)) { 
  251.                 $this->action(self::ACTION_KEEP_A); 
  252.                 break
  253.               } 
  254.               $this->action(self::ACTION_DELETE_A_B); 
  255.               break
  256.             case "\n"
  257.               switch ($this->a) { 
  258.                 case '}'
  259.                 case ']'
  260.                 case ')'
  261.                 case '+'
  262.                 case '-'
  263.                 case '"'
  264.                 case "'"
  265.                   $this->action(self::ACTION_KEEP_A); 
  266.                   break
  267.                 default
  268.                   if ($this->isAlphaNum($this->a)) { 
  269.                     $this->action(self::ACTION_KEEP_A); 
  270.                   } 
  271.                   else { 
  272.                     $this->action(self::ACTION_DELETE_A_B); 
  273.                   } 
  274.               } 
  275.               break
  276.             default
  277.               $this->action(self::ACTION_KEEP_A); 
  278.               break
  279.           } 
  280.       } 
  281.     } 
  282.     return $this->output; 
  283.   } 
  284.   /** 
  285.    * Get the next character, skipping over comments. peek() is used to see 
  286.    *  if a '/' is followed by a '/' or '*'. 
  287.    * 
  288.    * @uses get() 
  289.    * @uses peek() 
  290.    * @throws JSMinException On unterminated comment. 
  291.    * @return string 
  292.    */ 
  293.   protected function next() { 
  294.     $c = $this->get(); 
  295.     if ($c === '/') { 
  296.       switch($this->peek()) { 
  297.         case '/'
  298.           for (;;) { 
  299.             $c = $this->get(); 
  300.             if (ord($c) <= self::ORD_LF) { 
  301.               return $c
  302.             } 
  303.           } 
  304.         case '*'
  305.           $this->get(); 
  306.           for (;;) { 
  307.             switch($this->get()) { 
  308.               case '*'
  309.                 if ($this->peek() === '/') { 
  310.                   $this->get(); 
  311.                   return ' '
  312.                 } 
  313.                 break
  314.               case null: 
  315.                 throw new JSMinException('Unterminated comment.'); 
  316.             } 
  317.           } 
  318.         default
  319.           return $c
  320.       } 
  321.     } 
  322.     return $c
  323.   } 
  324.   /** 
  325.    * Get next char. If is ctrl character, translate to a space or newline. 
  326.    * 
  327.    * @uses get() 
  328.    * @return string|null 
  329.    */ 
  330.   protected function peek() { 
  331.     $this->lookAhead = $this->get(); 
  332.     return $this->lookAhead; 
  333.   } //www.phpfensi.com 
  334. // -- Exceptions --------------------------------------------------------------- 
  335. class JSMinException extends Exception {} 
  336. ?> 

希望本文所述对大家的php程序设计有所帮助。

Tags: php压缩CSS

分享到:

相关文章