如何从 PHP 发送不完整的 HTTP 请求?
我需要检查远程文件是否在线并且它们没有改变。问题是这些文件很大,所以我只想读取 http 标头,然后中止请求。结果将基于响应状态代码和内容长度字段。
我怎样才能用 PHP 做到这一点?
I need to check if remote file are online and they didn't change. The problem is that those files are big, so I want to read the http header only and then abort the request. The result would be based on response status code and content length field.
How can I do it in PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
get_headers()
函数。如果您更喜欢 cURL,则可以使用
CURLOPT_NOBODY
:You can use the
get_headers()
function.If you prefer cURL, you can use
CURLOPT_NOBODY
: