file_get_contents获取远程网页内容函数_PHP教程
程序员文章站
2024-01-29 15:30:46
...
由于某种原因把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。
推荐阅读
-
file_get_contents获取远程网页内容函数_PHP教程
-
php获取网页标题和内容函数(不包含html标签)_PHP
-
PHP 获取远程网页内容的代码(fopen,curl已测)_PHP教程
-
php fsockopen函数发送post,get请求获得网页内容(反防采集)_PHP教程
-
php获取远程文件内容的函数,_PHP教程
-
获取远程文件大小的php函数_PHP教程
-
编程 - curl、file_get_contents等PHP获取网页内容函数的问题
-
PHP 获取远程文件内容的函数代码_PHP教程
-
php 获取远程网页内容的函数_PHP教程
-
php file_get_contents()读取采集远程文件内容_PHP教程