当前位置:Gxlcms > PHP教程 > file_get_contents获取远程网页内容函数_PHP教程

file_get_contents获取远程网页内容函数_PHP教程

时间:2021-07-01 10:21:17 帮助过:22人阅读

由于某种原因把php的allow_url_fopen选项是关闭了,就是没法直接使用file_get_contents来获取远程web页面的内容。那就是可以使用另外一个函数curl。

无限file_get_contents获取远程网页内容函数

function vita_get_url_content($url) {
if(function_exists('file_get_contents')) {
$file_contents = file_get_contents($url);
} else {
$ch = curl_init();
$timeout = 5;
curl_setopt ($ch, curlopt_url, $url);
curl_setopt ($ch, curlopt_returntransfer, 1);
curl_setopt ($ch, curlopt_connecttimeout, $timeout);
$file_contents = curl_exec($ch);
curl_close($ch);
}
return $file_contents;
}


/*
由于某种原因把php教程的allow_url_fopen选项是关闭了,就是没法直接使用file_get_contents来获取远程web页面的内容。那就是可以使用另外一个函数curl。


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/445436.htmlTechArticle由于某种原因把php的allow_url_fopen选项是关闭了,就是没法直接使用file_get_contents来获取远程web页面的内容。那就是可以使用另外一个函数cu...

人气教程排行