search
HomeBackend DevelopmentPHP TutorialPHP static file return_PHP tutorial

php static files return

Sometimes some static files (such as pictures) will be output by php, and you will find that the request is 200, and the static files go to the server every time The request is too wasteful of resources. How to let the browser cache the image? We need to output 304 in php.

We can use HTTP_IF_MODIFIED_SINCE in php combined with etag to do this. Etag does not have a clearly defined format. We can use the md5 value of the file modification time. The code is as follows:

The code is as follows:

private function _addEtag($file) {

 $last_modified_time = filemtime($file);

 $etag = md5_file($file);

// always send headers

Header("Last-Modified: ".gmdate("D, d M Y H:i:s", $last_modified_time)." GMT");

header("Etag: $etag");

// exit if not modified

 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;

 }

 }

It can be called in the code before static files (such as pictures) are output.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/991645.htmlTechArticlephp static file return Sometimes some static files (such as pictures) will be output by php, and you will find that the requests are all 200, It is a waste of resources to request static files from the server every time. How to make the browser...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
PHP技巧:快速实现返回上一页功能PHP技巧:快速实现返回上一页功能Mar 09, 2024 am 08:21 AM

PHP技巧:快速实现返回上一页功能在网页开发中,经常会遇到需要实现返回上一页的功能。这样的操作可以提高用户体验,让用户更加方便地在网页之间进行导航。在PHP中,我们可以通过一些简单的代码来实现这一功能。本文将介绍如何快速实现返回上一页功能,并提供具体的PHP代码示例。在PHP中,我们可以使用$_SERVER['HTTP_REFERER']来获取上一页的URL

MySQL插入数据后返回什么结果?MySQL插入数据后返回什么结果?Mar 01, 2024 am 10:27 AM

MySQL是一种广泛使用的关系型数据库管理系统,用于存储和管理数据。当我们想要往数据库表中插入新的数据时,通常会使用INSERT语句来实现。在MySQL中,当执行INSERT语句成功插入数据时,会返回一个结果,即插入操作的结果。在本文中,我们将详细讨论MySQL插入数据后返回的结果,并提供一些具体的代码示例。1.插入数据后返回的结果在MySQL中,当成功执

如何使用Vue实现返回上一页特效如何使用Vue实现返回上一页特效Sep 19, 2023 pm 01:07 PM

如何使用Vue实现返回上一页特效在前端开发中,经常会遇到需要返回上一页的情况。通过添加返回按钮,可以提供更好的用户体验。本文将介绍如何使用Vue框架来实现返回上一页特效,并提供相应的代码示例。首先,在Vue项目中,需要创建一个页面作为上一页。我们可以通过VueRouter来设置路由,每个路由对应一个组件。在上一页中,我们可以添加一个返回按钮,并通过点击事件

在一个扩展矩阵中,返回C++中的前一个元素在一个扩展矩阵中,返回C++中的前一个元素Sep 15, 2023 am 09:17 AM

基于扩展矩阵讨论一个问题。扩展矩阵是尺寸按某个因子不断增加的矩阵。这里我们有一个字符矩阵,其尺寸按2的倍数扩展,即如果原始矩阵的尺寸是N*N,那么扩展后的矩阵尺寸变为2N*2N。我们给出了一个字符序列位于(i,j)处,我们需要返回位于(i,(j-N-1)%N)处的字符序列。让我们通过可视化一些初始扩展矩阵来理解。GivenMatrix->[a,b][c,d],2X2matrixMultiplyingwith{a,b,c,d}AX[a,b]BX[a,b]CX[a,b]DX[a,b][c,d]

Java程序返回列表中的最大元素Java程序返回列表中的最大元素Aug 19, 2023 pm 05:17 PM

我们可以使用数组循环来从列表中返回最大的元素。主要是通过比较模型来实现的。在某个列表中,最大的数字将与该列表中的所有元素进行比较。该过程将考虑“n”作为输入数量,并将其作为数据值存储在数组中。之后,程序将在循环结束后在输出控制台上显示最大的元素。在本文中,我们将帮助您理解并编写一些Java代码,通过这些代码您可以从数组列表中找到最大的元素。如何使用Java从数组中选择最大的数字?Wecanfindalargestnumberbysortinganarray.TodefineavoidArrayL

如何返回 PHP 自定义函数的值?如何返回 PHP 自定义函数的值?Apr 15, 2024 pm 05:00 PM

PHP中的自定义函数可以通过return语句返回指定类型的值,包括字符串、数字、数组和对象。实战案例:-返回字符串:functiongreet($name){return"Hello,$name!";}-返回数组:functionget_user_data($id){return["name"=>"John","email"=>"john@example.com"];}

如何使用 PHP 创建带返回值的函数?如何使用 PHP 创建带返回值的函数?Apr 10, 2024 pm 12:45 PM

PHP中使用函数返回值的步骤包括:使用function声明函数;使用return语句返回结果;调用函数并捕获返回值。

如何使用PHP实现页面返回功能如何使用PHP实现页面返回功能Mar 08, 2024 pm 09:06 PM

标题:PHP实现页面返回功能的方法及代码示例在Web开发中,经常会遇到需要实现页面返回功能的情况,也就是用户点击返回按钮时能够返回到上一个页面。在PHP中,通过使用header函数结合JavaScript,可以实现这一功能。本文将介绍如何使用PHP实现页面返回功能,并提供具体的代码示例。一、使用header函数实现页面返回功能header函数是PHP中用于发

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor