用于缓存下载的 php 库
有没有一个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用curl,并查找
304 Not Modified
状态标头。任何要文件的缓存,您都需要指定自己(例如存储文件的位置等)。通过谷歌快速搜索它给了我以下结果: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.)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.