当前位置:首页 > PHP教程 > php函数 > 列表

PHP CURL或file_get_contents获取网页标题的代码

发布:smiling 来源: PHP粉丝网  添加日期:2015-04-10 14:53:23 浏览: 评论:0 

PHP CURL与file_get_contents函数都可以获取远程服务器上的文件保存到本地,但在性能上面两者完全不在同一个级别,下面我先来介绍PHP CURL或file_get_contents函数应用例子,然后再简单的给各位介绍一下它们的一些小区别吧.

推荐方法 CURL获取,代码如下:

  1. <?php 
  2. $c = curl_init(); 
  3. $url = 'www.phpfensi.com'
  4. curl_setopt($c, CURLOPT_URL, $url); 
  5. curl_setopt($c, CURLOPT_RETURNTRANSFER, 1); 
  6. $data = curl_exec($c); 
  7. curl_close($c); 
  8. $pos = strpos($data,'utf-8'); 
  9. if($pos===false){$data = iconv("gbk","utf-8",$data);} 
  10. preg_match("/<title>(.*)<\/title>/i",$data$title); 
  11. echo $title[1]; 
  12. ?> 

使用file_get_contents,代码如下:

  1. <?php 
  2. $content=file_get_contents("http://www.phpfensi.com/"); 
  3. $pos = strpos($content,'utf-8'); 
  4. if($pos===false){$content = iconv("gbk","utf-8",$content);} 
  5. $postb=strpos($content,'<title>')+7; 
  6. $poste=strpos($content,'</title>'); 
  7. $length=$poste-$postb
  8. echo substr($content,$postb,$length); 
  9. ?> 

看看file_get_contents性能

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

2)fopen/file_get_contents在请求HTTP时,使用的是http_fopen_wrapper,不会keeplive。而curl却可以。这样在多次请求多个链接时,curl效率会好一些。(设置header头应该可以)

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

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

5)fopen/file_get_contents 不能正确下载二进制文件

6)fopen/file_get_contents 不能正确处理ssl请求

7)curl 可以利用多线程

8)使用 file_get_contents 的时候如果网络出现问题,很容易堆积一些进程在这里

9)如果是要打一个持续连接,多次请求多个页面,那么file_get_contents就会出问题。取得的内容也可能会不对,所以做一些类似采集工作的时候,肯定就有问题了,对做采集抓取的用curl,如果还有同不相信下面我们再做个测试.

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.     $url="http://ip.taobao.com/service/getIpInfo.php?ip=".$ip
  13.     $ch = curl_init(); 
  14.     $timeout = 5; 
  15.     curl_setopt ($ch, CURLOPT_URL, $url); 
  16.     curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); 
  17.     curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout); 
  18.     $file_contents = curl_exec($ch); 
  19.     curl_close($ch); 
  20.  
  21.     $ipinfo=json_decode($file_contents); 
  22.     if($ipinfo->code=='1'){ 
  23.         return false; 
  24.     } 
  25.     $city = $ipinfo->data->region.$ipinfo->data->city; 
  26.     return $city
  27.  
  28. function getCity($ip
  29.     $url="http://ip.taobao.com/service/getIpInfo.php?ip=".$ip
  30.     $ipinfo=json_decode(file_get_contents($url)); 
  31.     if($ipinfo->code=='1'){ 
  32.         return false; 
  33.     } 
  34.     $city = $ipinfo->data->region.$ipinfo->data->city; 
  35.     return $city
  36.  
  37. // for file_get_contents 
  38. $startTime=explode(' ',microtime()); 
  39. $startTime=$startTime[0] + $startTime[1]; 
  40. for($i=1;$i<=10;$i++) 
  41.    echo getCity("121.207.247.202")."</br>"
  42. $endTime = explode(' ',microtime()); 
  43. $endTime = $endTime[0] + $endTime[1]; 
  44. $totalTime = $endTime - $startTime
  45. echo 'file_get_contents:'.number_format($totalTime, 10, '.'"")." seconds</br>"
  46.  
  47. //for curl 
  48. $startTime2=explode(' ',microtime()); 
  49. $startTime2=$startTime2[0] + $startTime2[1]; 
  50. for($i=1;$i<=10;$i++) 
  51. //开源软件:phpfensi.com 
  52.    echo getCityCurl('121.207.247.202')."</br>"
  53. $endTime2 = explode(' ',microtime()); 
  54. $endTime2=$endTime2[0] + $endTime2[1]; 
  55. $totalTime2 = $endTime2 - $startTime2
  56. echo "curl:".number_format($totalTime2, 10, '.'"")." seconds"
  57. ?> 

测试访问:

file_get_contents速度:4.2404510975 seconds

curl速度:2.8205530643 seconds

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

Tags: CURL file_get_contents

分享到: