1

好吧,如标题所示,我想在用户的浏览器上缓存我的 php 脚本生成的资源。我想这样做是因为我想动态地为来自服务器端的一些图像提供缩略图。我有这个.htaccess文件,里面有这些内容。

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.+)$ index.php?image_id=$1 [QSA,L]

index.php 文件包含这些代码。

<?php

      header('Last-Modified: ' .gmdate('D, d M Y H:i:s',time()-3600) . ' GMT');


$image_id=$_GET['image_id'];
$chunk=  explode("/", $image_id);
$destination_height=$chunk[0];
$destination_width=$chunk[1];
$image=$chunk[2];
if(file_exists($image))
{
$extension=explode(".",$image);
$extension=end($extension);
switch ($extension) {
    case "jpg":
        $source_image=  imagecreatefromjpeg($image);
        break;
case "jpeg":
        $source_image=  imagecreatefromjpeg($image);
        break;
    case "gif":
        $source_image=  imagecreatefromgif($image);
        break;
    case "png":
        $source_image=  imagecreatefrompng($image);
        break;    
    default:
        break;
}
        $source_height = imagesy($source_image);
        $source_width = imagesx($source_image);
        if($destination_height=="full")
        {
            $destination_height=$source_height;
        }
        if($destination_width=="full")
        {
            $destination_width=$source_width;
        }
        $destination_image=  imagecreatetruecolor($destination_width, $destination_height);
  $dst_x=0;
     $dst_y=0;
     $src_x=0;
  $src_y=0;
  imagecopyresized($destination_image,$source_image,$dst_x,$dst_y,$src_x,$src_y,$destination_width,$destination_height,$source_width,$source_height);
switch ($extension) {
    case "jpg":
   imagejpeg($destination_image);
   header("content-type:image/jpeg");
        break;
  case "jpeg":
   header("content-type:image/jpeg");
   imagejpeg($destination_image);
        break;
    case "gif":
   header("content-type:image/gif");
   imagegif($destination_image);
        break;
    case "png":
   header("content-type:image/png");
   imagepng($destination_image);
        break;
    default:
    break;
}
}
?>

即使在此之后,当我进入开发者模式并在谷歌浏览器上看到网络选项卡时,状态信息是:200 OK
可以做些什么来缓存此脚本生成的所有图像?因为对于特定的 url,在这个实现中,内容是永远不会改变的,所以我想缓存图像。任何类型的想法都将不胜感激。谢谢。

4

1 回答 1

0

用这个

file_put_contents($filename, $imagedata);

它会将图像写入服务器,并且由于您的 htaccess 文件只会在文件不存在时运行图像生成,因此它只会写入文件一次,然后从那时起提供缓存的版本。

于 2013-03-28T18:02:44.537 回答