1

以下脚本将:

  1. 如果文件的客户端缓存版本是最新的,则返回 304 Not Modified 标头。
  2. 如果不是,那么它将返回文件的服务器缓存版本(如果它是当前版本)。
  3. 如果没有,它将创建文件,将副本存储在服务器端缓存中,然后返回文件。

我的问题是第 2 步:返回文件的服务器缓存版本。正如我创建原始文件的位置所见,我还发送了一些标头以指示返回文件的类型并允许客户端缓存文件。返回文件的服务器缓存版本时,如何发送相同的标头?

离题,与这个问题无关,但对我如何命名缓存文件的任何评论将不胜感激。$cachefile = $root.'/ayb_cache/'.preg_replace("/[^A-Za-z0-9 ]/", '', basename($_SERVER['REQUEST_URI']));

<?php
date_default_timezone_set('UTC');
$root=dirname(dirname(dirname(dirname(__FILE__))));
$filetime=filemtime(__FILE__);
if (isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) && (@strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']) == $filetime))
{
    header('Last-Modified: '.gmdate('D, d M Y H:i:s', $filetime).' GMT', true, 304);
}
else
{
    //Not yet cached on client

    $cachefile = $root.'/ayb_cache/'.preg_replace("/[^A-Za-z0-9 ]/", '', basename($_SERVER['REQUEST_URI']));
    $cachetime=60*60*24*14;

    if (file_exists($cachefile) && (time() - $cachetime < filemtime($cachefile)))
    {
        // Serve from the cache if it is younger than $cachetime
        include($cachefile);
        //echo "<!-- Cached ".date('jS F Y H:i', filemtime($cachefile))." -->";
        echo "/* Cached ".date('jS F Y H:i', filemtime($cachefile))." */";
    }

    else
    {
        //create new file
        ob_start();

        header( 'Content-type: text/javascript' ); //tell the browser we're returning JS
        header('Pragma: public');
        header('Cache-Control: public, maxage='.$cachetime);
        header('Expires: ' . gmdate('D, d M Y H:i:s', time()+$cachetime) . ' GMT');
        header('Last-Modified: '.gmdate('D, d M Y H:i:s', filemtime(__FILE__)).' GMT', true, 200);

        echo('alert("My Javascript");');

        $fp = fopen($cachefile, 'w'); // open the cache file for writing
        fwrite($fp, ob_get_contents()); // save the contents of output buffer to the file
        fclose($fp);
        ob_end_flush(); // Send the output to the browser
    }
}
?>
4

1 回答 1

1

在下面的代码中包括语句header();之前的调用。include($cachefile)

if (file_exists($cachefile) && (time() - $cachetime < filemtime($cachefile)))
{
    // Serve from the cache if it is younger than $cachetime
    include($cachefile);
    //echo "<!-- Cached ".date('jS F Y H:i', filemtime($cachefile))." -->";
    echo "/* Cached ".date('jS F Y H:i', filemtime($cachefile))." */";
}
于 2013-06-05T12:09:31.337 回答