我已经在 Ubuntu Desktop 12.04 上安装了 php 5.3.14。
与:allow_url_fopen = 1
下面不起作用:
<?php
echo file_get_contents('http://www.example.com');
作品如下:
<?php
$fp = fsockopen("www.example.com", 80, $errno, $errstr, 30);
if (!$fp) {
echo "$errstr ($errno)<br />\n";
} else {
$out = "GET / HTTP/1.1\r\n";
$out .= "Host: www.example.com\r\n";
$out .= "Connection: Close\r\n\r\n";
fwrite($fp, $out);
while (!feof($fp)) {
echo fgets($fp, 128);
}
fclose($fp);
}
甚至 curl_exec() 也有效。我也尝试过使用 Python,Python 可以获取 www 内容。
我没有使用防火墙、代理。
但是本地网络没有问题。(192.168.1.36 是我的本地服务器机器。)
<?php
echo file_get_contents('http://192.168.1.36);
是否有任何配置或安装问题?谢谢。