如何从 PHP 发送不完整的 HTTP 请求?

发布于 2024-12-02 18:55:46 字数 107 浏览 1 评论 0原文

我需要检查远程文件是否在线并且它们没有改变。问题是这些文件很大,所以我只想读取 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 技术交流群。

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

发布评论

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

评论(1

千と千尋 2024-12-09 18:55:46

您可以使用 get_headers() 函数。

如果您更喜欢 cURL,则可以使用 CURLOPT_NOBODY

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, TRUE);
curl_setopt($ch, CURLOPT_NOBODY, TRUE); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);

$headers = curl_exec($ch);

You can use the get_headers() function.

If you prefer cURL, you can use CURLOPT_NOBODY:

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, TRUE);
curl_setopt($ch, CURLOPT_NOBODY, TRUE); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);

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