当前位置:首页 > PHP教程 > php高级应用 > 列表

php file_get_contents与curl性能比较

发布:smiling 来源: PHP粉丝网  添加日期:2014-08-27 11:13:46 浏览: 评论:0 

在php中如果不仔细的去分析性能会发现file_get_contents与curl两个同很多共同点的,他们都可以采集文件打开文件,但是如果仔细一对比会发现很多不同点,下面我们一起来看看file_get_contents与curl区别.

PHP中fopen,file_get_contents,curl函数的区别:

1.fopen /file_get_contents 每次请求都会重新做DNS查询,并不对 DNS信息进行缓存。但是CURL会自动对DNS信息进行缓存,对同一域名下的网页或者图片的请求只需要一次DNS查询,这大大减少了DNS查询的次数,所以CURL的性能比fopen /file_get_contents 好很多.

2.fopen /file_get_contents 在请求HTTP时,使用的是http_fopen_wrapper,不会keeplive,而curl却可以,这样在多次请求多个链接时,curl效率会好一些.

3.fopen / file_get_contents 函数会受到php.ini文件中allow_url_open选项配置的影响,如果该配置关闭了,则该函数也就失效了,而curl不受该配置的影响.

4.curl 可以模拟多种请求,例如:POST数据,表单提交等,用户可以按照自己的需求来定制请求,而fopen / file_get_contents只能使用get方式获取数据.

file_get_contents 获取远程文件时会把结果都存在一个字符串中 fiels函数则会储存成数组形式,因此,我还是比较倾向于使用curl来访问远程url,Php有curl模块扩展,功能很是强大.

说了半天大家可能说性能怎么没对比呢,那我们就来看看,最近需要获取别人网站上的音乐数据,用了file_get_contents函数,但是总是会遇到获取失败的问题,尽管按照手册中的例子设置了超时,可多数时候不会奏效,代码如下:

  1. $config['context'] = stream_context_create(array(‘http’ => array(‘method’ => “GET”, 
  2.    ’timeout’ => 5//这个超时时间不稳定,经常不奏效 
  3.    ) 
  4.   )); 

这时候,看一下服务器的连接池,会发现一堆类似的错误,让我头疼万分,代码如下:

file_get_contents(http://phpfensi.com):failed to open stream… 

现在改用了curl库,写了一个函数替换,代码如下:

  1. function curl_file_get_contents($durl){ 
  2.   $ch = curl_init(); 
  3.   curl_setopt($ch, CURLOPT_URL, $durl); 
  4.   curl_setopt($ch, CURLOPT_TIMEOUT, 5); 
  5.   curl_setopt($ch, CURLOPT_USERAGENT, _USERAGENT_); 
  6.   curl_setopt($ch, CURLOPT_REFERER,_REFERER_); 
  7.   curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
  8.   $r = curl_exec($ch); 
  9.   curl_close($ch); 
  10.    return $r

如此,除了真正的网络问题外,没再出现任何问题,这是别人做过的关于curl和file_get_contents的测试,file_get_contents抓取google.com需用秒数.

  1. 2.31319094 
  2. 2.30374217 
  3. 2.21512604 
  4. 3.30553889 
  5. 2.30124092 
  6.  
  7. curl使用的时间: 
  8.  
  9. 0.68719101 
  10. 0.64675593 
  11. 0.64326 
  12. 0.81983113 
  13. 0.63956594 

差距很大?呵呵,从我使用的经验来说,这两个工具不只是速度有差异,稳定性也相差很大,建议对网络数据抓取稳定性要求比较高的朋友使用上面的 curl_file_get_contents函数,不但稳定速度快,还能假冒浏览器欺骗目标地址.

再看一个实例

后续贴出了curl和file_get_contents的对比结果,这边除了curl与file_get_contents的性能对比,还包含了他们的性能对比,curl与file_get_contents性能对比PHP源代码如下:

  1. <?php  
  2. /**  
  3.  
  4. * 通过淘宝IP接口获取IP地理位置  
  5.  
  6. * @param string $ip  
  7.  
  8. * @return: string  
  9.  
  10. **/ 
  11. function getCityCurl($ip)  
  12. {  
  13.     $url="http://ip.taobao.com/service/getIpInfo.php?ip=".$ip;  
  14.     $ch = curl_init();  
  15.     $timeout = 5;  
  16.     curl_setopt ($ch, CURLOPT_URL, $url);  
  17.     curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);  
  18.     curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);  
  19.     $file_contents = curl_exec($ch);  
  20.     curl_close($ch);  
  21.    
  22.     $ipinfo=json_decode($file_contents);  
  23.     if($ipinfo->code=='1'){  
  24.         return false;  
  25.     }  
  26.     $city = $ipinfo->data->region.$ipinfo->data->city;  
  27.     return $city;  
  28. }  
  29.    
  30. function getCity($ip)  
  31. {  
  32.     $url="http://ip.taobao.com/service/getIpInfo.php?ip=".$ip;  
  33.     $ipinfo=json_decode(file_get_contents($url));  
  34.     if($ipinfo->code=='1'){  
  35.         return false;  
  36.     }  
  37.     $city = $ipinfo->data->region.$ipinfo->data->city;  
  38.     return $city;  
  39. }  
  40.    
  41. // for file_get_contents  
  42. $startTime=explode(' ',microtime());  
  43. $startTime=$startTime[0] + $startTime[1];  
  44. for($i=1;$i<=10;$i++)  
  45. //开源代码phpfensi.com 
  46.    echo getCity("121.207.247.202")."</br>";  
  47. }  
  48. $endTime = explode(' ',microtime());  
  49. $endTime = $endTime[0] + $endTime[1];  
  50. $totalTime = $endTime - $startTime;  
  51. echo 'file_get_contents:'.number_format($totalTime, 10, '.'"")." seconds</br>";  
  52.    
  53. //for curl  
  54. $startTime2=explode(' ',microtime());  
  55. $startTime2=$startTime2[0] + $startTime2[1];  
  56. for($i=1;$i<=10;$i++)  
  57. {  
  58.    echo getCityCurl('121.207.247.202')."</br>";  
  59. }  
  60. $endTime2 = explode(' ',microtime());  
  61. $endTime2=$endTime2[0] + $endTime2[1];  
  62. $totalTime2 = $endTime2 - $startTime2;  
  63. echo "curl:".number_format($totalTime2, 10, '.'"")." seconds";  
  64. ?> 

测试访问:http://www.phpfensi.com

file_get_contents速度:4.2404510975 seconds

curl速度:2.8205530643 seconds

curl比file_get_contents速度快了30%左右,最重要的是服务器负载更低.

总结:file_get_contents处理频繁小的时候,用它感觉挺好的,没什么异常,如果你的文件被1k+人处理,那么你的服务器cpu就等着高升吧,所以建议自己和大家在以后写php代码的时候使用curl库.

Tags: file_get_contents curl性能比较

分享到: