关于file_get_contents返回为空或函数不可用的解决方案

2015-01-24信息快讯网

本篇文章是对file_get_contents返回为空或函数不可用的解决方案进行了详细的分析介绍,需要的朋友参考下

如果你使用file_get_contents获取远程文件内容返回为空或提示该函数不可用,也许本文能帮到你!
使用file_get_contents和fopen必须空间开启allow_url_fopen。方法:编辑php.ini,设置allow_url_fopen = On,allow_url_fopen关闭时fopen和file_get_contents都不能打开远程文件。如果你使用的是虚拟主机可以考虑用curl函数来代替。
curl函数的使用示例:
$ch = curl_init();
$timeout = 5;
curl_setopt ($ch, CURLOPT_URL, ‘http://www.jb51.net');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$file_contents = curl_exec($ch);
curl_close($ch);

利用function_exists函数来判断php是否支持file_get_contents,否则用curl函数来代替。
PS
1、如果你的主机服务商把curl也关闭了,那你还是换个主机商吧!
2、allow_url_fopen设为off,并不代表你的主机不支持file_get_content函数。只是不能打开远程文件而已。function_exists(‘file_get_contents')返回的是true。所以网上流传的《file_get_contents函数不可用的解决方法》还是不能解决问题。
错误代码:
if (function_exists(‘file_get_contents')) {
$file_contents = @file_get_contents($url);
}else{
$ch = curl_init();
$timeout = 30;
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);
}

应改为:
if (function_exists(‘file_get_contents')) {//判断是否支持file_get_contents
$file_contents = @file_get_contents($url);
}
if ($file_contents == ”) {//判断$file_contents是否为空
$ch = curl_init();
$timeout = 30;
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);
}

最终代码:
function file_get_content($url) {
if (function_exists(‘file_get_contents')) {
$file_contents = @file_get_contents($url);
}
if ($file_contents == ”) {
$ch = curl_init();
$timeout = 30;
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;
}

用法:
echo file_get_content(‘http://www.jb51.net');
MongoDB在PHP中的常用操作小结
jQuery中的RadioButton,input,CheckBox取值赋值实现代码
PHP中ini_set和ini_get函数的用法小结
php中sprintf与printf函数用法区别解析
PHP json_decode函数详细解析
php将session放入memcached的设置方法
php的sprintf函数的用法 控制浮点数格式
php根据isbn书号查询amazon网站上的图书信息的示例
使用swoole扩展php websocket示例
php中的路径问题与set_include_path使用介绍
分享下页面关键字抓取components.arrow.com站点代码
分享下页面关键字抓取www.icbase.com站点代码(带asp.net参数的)
使用openssl实现rsa非对称加密算法示例
php fsockopen解决办法 php实现多线程
用Zend Studio+PHPnow+Zend Debugger搭建PHP服务器调试环境步骤
php递归函数中使用return的注意事项
windows下PHP_intl.dll正确配置方法(apache2.2+php5.3.5)
PHP类继承 extends使用介绍
ubuntu12.04使用c编写php扩展模块教程分享
解析在apache里面给php写虚拟目录的详细方法
解析php addslashes()与addclashes()函数的区别和比较
关于ob_get_contents(),ob_end_clean(),ob_start(),的具体用法详解
解析crontab php自动运行的方法
解析php框架codeigniter中如何使用框架的session
关于更改Zend Studio/Eclipse代码风格主题的介绍
关于zend studio 出现乱码问题的总结
php 备份数据库代码(生成word,excel,json,xml,sql)
PHP中mb_convert_encoding与iconv函数的深入解析
解析php中var_dump,var_export,print_r三个函数的区别
解析PHP中intval()等int转换时的意外异常情况
解析zend studio中直接导入svn中的项目的方法步骤
探讨GDFONTPATH能否被winxp下的php支持
解析php函数method_exists()与is_callable()的区别
解析php中die(),exit(),return的区别
解析:通过php socket并借助telnet实现简单的聊天程序
php empty()与isset()区别的详细介绍
©2014-2024 dbsqp.com