Home > Backend Development > PHP Tutorial > shell - PHP centos上 file_get_contents获取本机上的域名会返回false 其他外网域名又能正常获取

shell - PHP centos上 file_get_contents获取本机上的域名会返回false 其他外网域名又能正常获取

WBOY
Release: 2016-06-06 20:20:44
Original
1517 people have browsed it

PHP centos上用 file_get_contents获取本机上的域名会返回false 比如一台centos的服务器上绑定了域名www.jitapu.me 。在php里面获取www.jitapu.me的内容会返回false。
比如

<code>$str1 = file_get_contents('http://www.jitapu.me'); 
$str2 = file_get_contents('http://www.baidu.com'); </code>
Copy after login
Copy after login

其他外网域名又能正常获取. 比如上面$str1返回false,$str2返回了正常的内容。
首先防火墙应该是没问题的,要不怎么能访问其他域名的,防火墙中也是对访问127.0.0.1的端口没有限制的,mysql这些都能正常使用。
这个我遇到很多次。百思不得其解。

回复内容:

PHP centos上用 file_get_contents获取本机上的域名会返回false 比如一台centos的服务器上绑定了域名www.jitapu.me 。在php里面获取www.jitapu.me的内容会返回false。
比如

<code>$str1 = file_get_contents('http://www.jitapu.me'); 
$str2 = file_get_contents('http://www.baidu.com'); </code>
Copy after login
Copy after login

其他外网域名又能正常获取. 比如上面$str1返回false,$str2返回了正常的内容。
首先防火墙应该是没问题的,要不怎么能访问其他域名的,防火墙中也是对访问127.0.0.1的端口没有限制的,mysql这些都能正常使用。
这个我遇到很多次。百思不得其解。

在centos上ping下www.jitapu.me试试

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template