PHPファイル内にetagsをどのように実装しますか?サーバーに何をアップロードし、PHPファイルに何を挿入しますか?
.htaccessファイルを作成/編集して、以下を追加します。
FileETag MTime Size
次のコードを関数内に配置するか、PHPファイルの上部に配置して、作業にetagsが必要です。
<?php
$file = 'myfile.php';
$last_modified_time = filemtime($file);
$etag = md5_file($file);
header("Last-Modified: ".gmdate("D, d M Y H:i:s", $last_modified_time)." GMT");
header("Etag: $etag");
if (@strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']) == $last_modified_time ||
trim($_SERVER['HTTP_IF_NONE_MATCH']) == $etag) {
header("HTTP/1.1 304 Not Modified");
exit;
}
?>