默认不打开文件系统和流配置选项 allow_url_fopen ,建议使用一个替代的函数模块 cURL。
php cURL 远程读取数据的方法:
例1,allow_url_fopen = On:
复制代码 代码示例:
$str =
file_get_contents("http://www.yuju100.com");
if ($str !== false) {
// do something with the content
echo $str;
}
?>
例2,allow_url_fopen = Off:
复制代码 代码示例:
$ch = curl_init("http://www.yuju100.com/");
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$str = curl_exec($ch);
if ($str !== false) {
// do something with the content
echo $str;
}
curl_close($ch);
?>
有关php curl的相关知识,请参考: