Скрипт для оптимизации загрузки сайта. Статьи. wb0.ru - Все для веб-мастера, on-line сервисы

Скрипт для оптимизации загрузки сайта

Несмотря на то, что с каждым днем каналы пользователей становятся все шире, а скорости все выше, проблема оптимизации кода при создании сайтов до сих пор является очень актуальной.

Порой даже на загрузку пустой страницы может уходить несколько секунд. Часто это происходит со страницами, которые используют несколько CSS-файлов и несколько файлов со скриптами.

Однако решение по оптимизации в таких случаях все же существует.

Суть его такова: СSS-файлы и файлы со скриптами javascript объединяются в один большой файл, затем архивируются средствами gzip. Однако вручную делать это неудобно, т.к. чтобы отредактировать какой-либо файл, Вам придется сначала разархивировать архив, а затем снова заархивировать.

Для автоматизации этого процесса существует небольшой php скрипт:

  1. <?php
  2.  
  3.         /************************************************************************
  4.          * CSS and Javascript Combinator 0.5
  5.          * Copyright 2006 by Niels Leenheer
  6.          *
  7.          * Permission is hereby granted, free of charge, to any person obtaining
  8.          * a copy of this software and associated documentation files (the
  9.          * "Software"), to deal in the Software without restriction, including
  10.          * without limitation the rights to use, copy, modify, merge, publish,
  11.          * distribute, sublicense, and/or sell copies of the Software, and to
  12.          * permit persons to whom the Software is furnished to do so, subject to
  13.          * the following conditions:
  14.          *
  15.          * The above copyright notice and this permission notice shall be
  16.          * included in all copies or substantial portions of the Software.
  17.          *
  18.          * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  19.          * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  20.          * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  21.          * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  22.          * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  23.          * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  24.          * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  25.          */
  26.  
  27.  
  28.         $cache    = true;
  29.         $cachedir = dirname(__FILE__) . '/cache';
  30.         $cssdir   = dirname(__FILE__) . '/css';
  31.         $jsdir    = dirname(__FILE__) . '/javascript';
  32.  
  33.         // Determine the directory and type we should use
  34.         switch ($_GET['type']) {
  35.                 case 'css':
  36.                         $base = realpath($cssdir);
  37.                         break;
  38.                 case 'javascript':
  39.                         $base = realpath($jsdir);
  40.                         break;
  41.                 default:
  42.                         header ("HTTP/1.0 503 Not Implemented");
  43.                         exit;
  44.         };
  45.  
  46.         $type = $_GET['type'];
  47.         $elements = explode(',', $_GET['files']);
  48.        
  49.         // Determine last modification date of the files
  50.         $lastmodified = 0;
  51.         while (list(,$element) = each($elements)) {
  52.                 $path = realpath($base . '/' . $element);
  53.        
  54.                 if (($type == 'javascript' && substr($path, -3) != '.js') ||
  55.                         ($type == 'css' && substr($path, -4) != '.css')) {
  56.                         header ("HTTP/1.0 403 Forbidden");
  57.                         exit;  
  58.                 }
  59.        
  60.                 if (substr($path, 0, strlen($base)) != $base || !file_exists($path)) {
  61.                         header ("HTTP/1.0 404 Not Found");
  62.                         exit;
  63.                 }
  64.                
  65.                 $lastmodified = max($lastmodified, filemtime($path));
  66.         }
  67.        
  68.         // Send Etag hash
  69.         $hash = $lastmodified . '-' . md5($_GET['files']);
  70.         header ("Etag: \"" . $hash . "\"");
  71.        
  72.         if (isset($_SERVER['HTTP_IF_NONE_MATCH']) &&
  73.                 stripslashes($_SERVER['HTTP_IF_NONE_MATCH']) == '"' . $hash . '"')
  74.         {
  75.                 // Return visit and no modifications, so do not send anything
  76.                 header ("HTTP/1.0 304 Not Modified");
  77.                 header ('Content-Length: 0');
  78.         }
  79.         else
  80.         {
  81.                 // First time visit or files were modified
  82.                 if ($cache)
  83.                 {
  84.                         // Determine supported compression method
  85.                         $gzip = strstr($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip');
  86.                         $deflate = strstr($_SERVER['HTTP_ACCEPT_ENCODING'], 'deflate');
  87.        
  88.                         // Determine used compression method
  89.                         $encoding = $gzip ? 'gzip' : ($deflate ? 'deflate' : 'none');
  90.        
  91.                         // Check for buggy versions of Internet Explorer
  92.                         if (!strstr($_SERVER['HTTP_USER_AGENT'], 'Opera') &&
  93.                                 preg_match('/^Mozilla\/4\.0 \(compatible; MSIE ([0-9]\.[0-9])/i', $_SERVER['HTTP_USER_AGENT'], $matches)) {
  94.                                 $version = floatval($matches[1]);
  95.                                
  96.                                 if ($version < 6)
  97.                                         $encoding = 'none';
  98.                                        
  99.                                 if ($version == 6 && !strstr($_SERVER['HTTP_USER_AGENT'], 'EV1'))
  100.                                         $encoding = 'none';
  101.                         }
  102.                        
  103.                         // Try the cache first to see if the combined files were already generated
  104.                         $cachefile = 'cache-' . $hash . '.' . $type . ($encoding != 'none' ? '.' . $encoding : '');
  105.                        
  106.                         if (file_exists($cachedir . '/' . $cachefile)) {
  107.                                 if ($fp = fopen($cachedir . '/' . $cachefile, 'rb')) {
  108.  
  109.                                         if ($encoding != 'none') {
  110.                                                 header ("Content-Encoding: " . $encoding);
  111.                                         }
  112.                                
  113.                                         header ("Content-Type: text/" . $type);
  114.                                         header ("Content-Length: " . filesize($cachedir . '/' . $cachefile));
  115.                
  116.                                         fpassthru($fp);
  117.                                         fclose($fp);
  118.                                         exit;
  119.                                 }
  120.                         }
  121.                 }
  122.        
  123.                 // Get contents of the files
  124.                 $contents = '';
  125.                 reset($elements);
  126.                 while (list(,$element) = each($elements)) {
  127.                         $path = realpath($base . '/' . $element);
  128.                         $contents .= "\n\n" . file_get_contents($path);
  129.                 }
  130.        
  131.                 // Send Content-Type
  132.                 header ("Content-Type: text/" . $type);
  133.                
  134.                 if (isset($encoding) && $encoding != 'none')
  135.                 {
  136.                         // Send compressed contents
  137.                         $contents = gzencode($contents, 9, $gzip ? FORCE_GZIP : FORCE_DEFLATE);
  138.                         header ("Content-Encoding: " . $encoding);
  139.                         header ('Content-Length: ' . strlen($contents));
  140.                         echo $contents;
  141.                 }
  142.                 else
  143.                 {
  144.                         // Send regular contents
  145.                         header ('Content-Length: ' . strlen($contents));
  146.                         echo $contents;
  147.                 }
  148.  
  149.                 // Store cache
  150.                 if ($cache) {
  151.                         if ($fp = fopen($cachedir . '/' . $cachefile, 'wb')) {
  152.                                 fwrite($fp, $contents);
  153.                                 fclose($fp);
  154.                         }
  155.                 }
  156.         }      
  157. ?>

Все, что Вам нужно - это скопировать этот скрипт в корень Вашего сайта, предварительно отредактировав в нем следующие строки:

  1. $cachedir = dirname(__FILE__) . '/cache';
  2. $cssdir   = dirname(__FILE__) . '/css';
  3. $jsdir    = dirname(__FILE__) . '/javascript';

Первая строка - это указание адреса папки с кэшем (Вам нужно создать такую папку и дать ей права на запись 777), а вторая и третья строка - это адреса папок с CSS-файлами и с файлами скриптов.

Далее в файл .htaccess в корне сайта (если такого файла нет, то его следует создать) вписать следующий код:

  1. RewriteEngine On
  2. RewriteBase /
  3. RewriteRule ^css/(.*\.css) /combine.php?type=css&files=$1
  4. RewriteRule ^javascript/(.*\.js) /combine.php?type=javascript&files=$1

Если же Ваш файл .htaccess уже использует rewrite, то вписать в него нужно лишь последние две строки.


Дата публикации: 11.08.2010
ruseller.com

Статьи по теме:

   Ваш псевдоним:
Ваш комментарий:

Календарь событий


Новости Интернет


Поиск





Последний пересчет

тИЦ:07 Окт 15
PR:09 Дек 13

Наши партнеры

wservices.ru - регистрация доменов, Whois-сервисы Смайлы на все случаи жизни


 
Copyright © 2006-2024, wb0.ru