是否可以发送http请求仅获取最后修改时间?
而不是文件本身?
编辑
最好用 PHP 进行演示吗?
Instead of the file itself?
EDIT
Best with a demo in PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
而不是文件本身?
编辑
最好用 PHP 进行演示吗?
Instead of the file itself?
EDIT
Best with a demo in PHP?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
是的。 “HEAD”方法仅返回响应标头,而不返回实际数据。
Yes. The "HEAD" method returns only the response headers and not the actual data.
可以使用php的get_headers函数
You can use php's get_headers function
在您的 HTTP 请求中,您应该添加任何这些标头属性,并且您可能会收到 304 (最后修改)
Andrei 是正确的,HEAD 只会获取标头。如果满足条件,我的建议将仅返回标题而不返回正文。如果内容已更新,正文将包含新信息。
In your HTTP request you should add any of these header attributes, and you may receive an 304 (Last modified)
Andrei is correct, HEAD will only get the headers. My suggestion will return only the header and no body if the condictions are met. If the content has been updated the body will contain the new information.
您需要编写一些服务来处理 http 请求并提取所请求文件的最后修改日期并返回响应日期。
You need to write some service to handle the http request and extract the last modified date for the requested file and return the date in response.