如何在PHP文件中使用etags? [英] How to use etags in a PHP file?

查看:240
本文介绍了如何在PHP文件中使用etags?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你如何在PHP文件中实现etags?什么我上传到服务器,我插入到我的PHP文件?

How do you implemented etags inside a PHP file? What do I upload to the server and what do I insert into my PHP file?

推荐答案

创建/编辑您的.htaccess文件和添加以下内容:

Create / edit your .htaccess file and add the following:

FileETag MTime Size

将以下内容放入函数中,或将它放在PHP文件的顶部,您需要使用etags来处理它:

Either place the following inside a function or put it at the top of the PHP file that you need etags to work on:

<?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; 
} 
?>

这篇关于如何在PHP文件中使用etags?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆