用于缓存下载的 php 库

发布于 2024-11-25 02:53:49 字数 189 浏览 2 评论 0原文

有没有一个php库可以实现http下载的缓存?

当使用库通过 http 下载文档时,我希望它在本地保留文档的副本,并在每次后续调用(对于相同的 url)返回本地副本,除非远程文件已更改。该库将使用 http 标头来查找文件上次更改的时间。

或者。有什么建议如何用几行代码来实现这一点吗?

谢谢

库尔特

is there a php library that implements caching for http downloads?

When downloading a document via http with the library, I would expect it to keep a copy of the document locally, and return the local copy at each subsequent call (for the same url) except if the remote file has changed. The library would use http headers to find out when the file has changed last.

Alternatively. Any suggestions how this could be implemented with a few lines of code?

thanks

Kurt

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

两人的回忆 2024-12-02 02:53:49

您可以使用curl,并查找304 Not Modified 状态标头。任何要文件的缓存,您都需要指定自己(例如存储文件的位置等)。

// Document unmodified? Return the cache file
if ($cache_exists && ($status == 304)) {
  return file_get_contents($cache_file);
}

通过谷歌快速搜索它给了我以下结果:http://www.lazycat.org/php-curl.php 其中似乎包含一个工作示例。

You can use curl, and look for the 304 Not Modified status header. Any cache to file, you would need to specify yourself (e.g where to store the file etc.)

// Document unmodified? Return the cache file
if ($cache_exists && ($status == 304)) {
  return file_get_contents($cache_file);
}

A quick google search for it gave me the following hit: http://www.lazycat.org/php-curl.php which appear to contain a working example.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文