在 PHP 中获取 URL 的 HTTP 响应 - XML

发布于 2024-12-02 14:55:08 字数 231 浏览 2 评论 0原文

我正在尝试检索 url 的状态。我正在编写 php 代码来检索它,但我没有得到输出。没有显示任何内容。

我正在从 xml 文件中读取 url 并将其存储在变量中。我正在做的

file_get_contents($url);

echo $http_respone_header[0]; 

$url 包含我从 xml 文件中读取的 url。

I am trying to retrieve the status of the url. I am writing php code to retrieve it but i am not getting the output. Nothing is being displayed.

I am reading the url's from the xml file and storing it in variable. I am doing

file_get_contents($url);

echo $http_respone_header[0]; 

$url contains the url which i have read from the xml file.

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

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

发布评论

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

评论(1

但可醉心 2024-12-09 14:55:08

您所做的不是获取 URL 状态,而是获取网站内容。如果 URL 错误/无效,file_get_contents() 将返回 false,如文档此处

所述正在尝试获取状态您可以简单地使用本网站其他主题中描述的解决方案。

<?php

$url = 'http://www.wp.pl';
$handle = curl_init($url);
curl_setopt($handle,  CURLOPT_RETURNTRANSFER, TRUE);

/* Get the HTML or whatever is linked in $url. */
$response = curl_exec($handle);

/* Check for 404 (file not found). */
$httpCode = curl_getinfo($handle, CURLINFO_HTTP_CODE);

echo $httpCode;

curl_close($handle);


?>

链接到上述主题:此处

The thing You are doing is not getting URL status but content of the site. In case of wrong/invalid URL file_get_contents() returns false as it is described in documentation in here

If You are trying to get status You can simply use the solution described in other topic on this site.

<?php

$url = 'http://www.wp.pl';
$handle = curl_init($url);
curl_setopt($handle,  CURLOPT_RETURNTRANSFER, TRUE);

/* Get the HTML or whatever is linked in $url. */
$response = curl_exec($handle);

/* Check for 404 (file not found). */
$httpCode = curl_getinfo($handle, CURLINFO_HTTP_CODE);

echo $httpCode;

curl_close($handle);


?>

Link to the mentioned topic: here

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