在 PHP 中获取 URL 的 HTTP 响应 - XML
我正在尝试检索 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您所做的不是获取 URL 状态,而是获取网站内容。如果 URL 错误/无效,file_get_contents() 将返回 false,如文档此处中
所述正在尝试获取状态您可以简单地使用本网站其他主题中描述的解决方案。
链接到上述主题:此处
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.
Link to the mentioned topic: here