>백엔드 개발 >PHP 튜토리얼 >PHP curl 无法解析域名

PHP curl 无法解析域名

WBOY
WBOY원래의
2016-06-06 20:33:081836검색

LNMP,DNS设置无误,curl任意地址报错:

<code>Couldn't resolve host 'example.com'
</code>

file_get_contents 报错:

<code>Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known
</code>
  1. shell 中直接 curl -I http://example.com 正常,ping也正常
  2. curl设置 CURL_IPRESOLVE_V4 无效

回复内容:

LNMP,DNS设置无误,curl任意地址报错:

<code>Couldn't resolve host 'example.com'
</code>

file_get_contents 报错:

<code>Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known
</code>
  1. shell 中直接 curl -I http://example.com 正常,ping也正常
  2. curl设置 CURL_IPRESOLVE_V4 无效

我有一个疑问,你的 example.com换成你具体需要的域名没有。有时候,运营商的DNS服务器可能没有对应的ip地址映射关系,从而找不到网站的。

好吧...找到问题了,PHP运行在chroot环境中,关掉就好了。

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.