PHP - 使用 GZIP 压缩静态 css 文件

发布于 2024-09-24 07:17:29 字数 1284 浏览 3 评论 0原文

所以我有一个CSS文件,style.css。在同一目录中我有 images/ 文件夹。 如何制作一个压缩 style.css 的脚本,但来自另一个文件夹?

现在我有这个:

<?php
  if(isset($_GET['css'])) $file = array('url' => htmlspecialchars($_GET['css']), 'type' => 'text/css');
  if(isset($_GET['js'])) $file = array('url' => htmlspecialchars($_GET['js']), 'type' => 'application/javascript');
  if(!isset($file)) exit();

  header('Content-type: '.$file['type']);
  header('Cache-Control: max-age='.(60*60*6).', must-revalidate');  

  // whitespace+comment removal, in case gzip is off
  function compress($buffer){
    global $file;
    $buffer = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $buffer);
    $buffer = str_replace(array("\r\n", "\r", "\n", "\t", '  ', '    ', '    '), ' ', $buffer);
    return $buffer;
  }

  if(extension_loaded('zlib'))
    if(substr_count($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip')) ob_start("ob_gzhandler");

  else ob_start("compress");

  include($file['url']);    
  ob_end_flush();
?>

并像这样使用它:

<style type="text/css">
 @import "http://mysite.com/lib/c.php?css=../style.css";
</style>

一切都很好,除了 css 文件内图像的路径不再起作用。 我认为这是因为 (images/bg.jpg) 变成 (../images/bg.jpg)

我可以解决这个问题,而不必将我的 c.php 脚本移动到与样式表相同的目录中吗?

so I have a css file, style.css. in the same directory I have the images/ folder.
How can I make a script that compresses style.css, but from another folder?

Right now I have this:

<?php
  if(isset($_GET['css'])) $file = array('url' => htmlspecialchars($_GET['css']), 'type' => 'text/css');
  if(isset($_GET['js'])) $file = array('url' => htmlspecialchars($_GET['js']), 'type' => 'application/javascript');
  if(!isset($file)) exit();

  header('Content-type: '.$file['type']);
  header('Cache-Control: max-age='.(60*60*6).', must-revalidate');  

  // whitespace+comment removal, in case gzip is off
  function compress($buffer){
    global $file;
    $buffer = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $buffer);
    $buffer = str_replace(array("\r\n", "\r", "\n", "\t", '  ', '    ', '    '), ' ', $buffer);
    return $buffer;
  }

  if(extension_loaded('zlib'))
    if(substr_count($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip')) ob_start("ob_gzhandler");

  else ob_start("compress");

  include($file['url']);    
  ob_end_flush();
?>

and use it something like this:

<style type="text/css">
 @import "http://mysite.com/lib/c.php?css=../style.css";
</style>

everything is ok except that the path to the images inside the css file don't work anymore.
i think it's because (images/bg.jpg) becomes (../images/bg.jpg)

can i fix this without having to move my c.php script in the same directory as the stylesheet?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱她像谁 2024-10-01 07:17:29

如果您的网络服务器有这样的功能,您可以使用 URL 重写来保持整洁。

mod_rewrite 的示例:

RewriteRule ^images/style\.css$ lib/c.php?css=../style.css

然后,您可以简单地:

@import "http://mysite.com/images/style.css";

我还建议您再看一下您的脚本。如果我加载此 URL 会发生什么?

http://mysite.com/lib/c.php?css=.htpasswd

If your web server has such feature, you can use URL rewriting to keep things tidy.

An example with mod_rewrite:

RewriteRule ^images/style\.css$ lib/c.php?css=../style.css

Then, you can simply:

@import "http://mysite.com/images/style.css";

I also recommend you give a second look to your script. What happens if I load this URL?

http://mysite.com/lib/c.php?css=.htpasswd
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文