是否可以动态生成html5缓存清单?

时间:2014-01-01 18:56:59

标签: php html5 dynamic cache-manifest

是否可以动态生成html5缓存清单?我已经尝试过php(遵循本教程以及其他http://grinninggecko.com/dynamic-cache-manifest/)但没有成功。

1 个答案:

答案 0 :(得分:9)

很确定,但是让我告诉你:让HTML5离线内容与JavaScript applicationCache.update()等完美配合。人。如果你是新手,有点麻烦。最终一切都有效......记录在案!但是CAVEAT LECTOR ......

无论如何,这是一个(希望)自我解释的PHP示例,您需要一个.htaccess文件。这将告诉您的服务器将cache.manifest解释为PHP代码(因为没有.php扩展名,所以需要这样做。)

您的.htaccss文件,以防您使用FCGI Wrapper:

AddType text/cache-manifest .manifest

<FilesMatch "\.(manifest)$">
  SetHandler fcgid-script
  FcgidWrapper /folder/to/your/php-fcgi-starter .manifest
  Options +ExecCGI
</FilesMatch>

你的.htaccess文件,以防你使用apache php模块(大部分时间,这将是默认情况):

AddType text/cache-manifest .manifest

<FilesMatch "\.(manifest)$">
    SetHandler application/x-httpd-php
</FilesMatch>

您的cache.manifest文件:

<?php

// only cache files in the following folders (avoids other stuff like "app/")
$folders = array('js', 'lib', 'views', 'styles');
$files = array('index.html');

// recursive function
function append_filelist(&$files, $folder) {
  if ($dh = opendir($folder)) {
    while (($file = readdir($dh)) !== false) {
      if ( ! in_array($file, array('.', '..', '.svn')) &&
             (substr($file, -4) != ".swp")) {
        if (is_dir($folder."/".$file))
          append_filelist($files, $folder."/".$file);
        else
          //$files[] = $folder."/".$file."?hash=".md5_file($folder."/".$file);
          $files[] = $folder."/".$file;
      } // if
    } // while
  } // if
}

// init
foreach ($folders as $folder)
  if (is_dir($folder))
    append_filelist($files, $folder);

// generate output
$body = "CACHE MANIFEST\n\nCACHE:\n";
foreach ($files as $file)
  $body .= $file."\n";
$body .= "\nNETWORK:\n*\n";

// render output (the 'Content-length' header avoids the automatic creation of a 'Transfer-Encoding: chunked' header)
header('Content-type: text/cache-manifest');
header('Content-length: '.strlen($body));
echo $body;
祝你好运!