php中 curl, fsockopen ,file_get_contents 三个函数

赵永斌:
有些时候用file_get_contents()调用外部文件,容易超时报错。换成curl后就可以.具体原因不清楚
curl 效率比file_get_contents()和fsockopen()高一些,原因是CURL会自动对DNS信息进行缓存(亮点啊 有我待亲测)

范佳鹏:
file_get_contents curl fsockopen
在当前所请求环境下选择性操作,没有一概而论:
具我们公司开发KBI应用来看:
刚开始采用:file_get_contents
后来采用:fsockopen
最后到至今采用:curl

(远程)我个人理解到的表述如下(不对请指出,不到位请补充)
file_get_contents 需要php.ini里开启allow_url_fopen,请求http时,使用的是http_fopen_wrapper,不会keeplive.curl是可以的。
file_get_contents()单个执行效率高,返回没有头的信息。
这个是读取一般文件的时候并没有什么问题,但是在读取远程问题的时候就会出现问题。
如果是要打一个持续连接,多次请求多个页面。那么file_get_contents和fopen就会出问题。
取得的内容也可能会不对。所以做一些类似采集工作的时候,肯定就有问题了。
sock较底层,配置麻烦,不易操作。 返回完整信息。

潘少宁-腾讯:

file_get_contents 虽然可以获得某URL的内容,但不能post  get啊。
curl 则可以post和get啊。还可以获得head信息
而socket则更底层。可以设置基于UDP或是TCP协议去交互
file_get_contents 和 curl 能干的,socket都能干。
socket能干的,curl 就不一定能干了
file_get_contents  更多的时候 只是去拉取数据。效率比较高  也比较简单。
赵的情况这个我也遇到过,我通过CURL设置host 就OK了。  这和网络环境有关系



1.

Php代码   收藏代码
  1. <?php  
  2. /** 
  3. * Socket版本 
  4. * 使用方法: 
  5. * $post_string = "app=socket&amp;version=beta"; 
  6. * request_by_socket('facebook.cn','/restServer.php',$post_string); 
  7. */  
  8. function request_by_socket($remote_server,$remote_path,$post_string,$port = 80,$timeout = 30){  
  9. $socket = fsockopen($remote_server,$port,$errno,$errstr,$timeout);  
  10. if (!$socketdie("$errstr($errno)");  
  11. fwrite($socket,"POST $remote_path HTTP/1.0");  
  12. fwrite($socket,"User-Agent: Socket Example");  
  13. fwrite($socket,"HOST: $remote_server");  
  14. fwrite($socket,"Content-type: application/x-www-form-urlencoded");  
  15. fwrite($socket,"Content-length: ".strlen($post_string)+8."");  
  16. fwrite($socket,"Accept:*/*");  
  17. fwrite($socket,"");  
  18. fwrite($socket,"mypost=$post_string");  
  19. fwrite($socket,"");  
  20. $header = "";  
  21. while ($str = trim(fgets($socket,4096))) {  
  22. $header.=$str;  
  23. }  
  24.   
  25. $data = "";  
  26. while (!feof($socket)) {  
  27. $data .= fgets($socket,4096);  
  28. }  
  29. return $data;  
  30. }  
  31. ?>  


2.
Php代码   收藏代码
  1. <?php  
  2. /**   
  3. * Curl版本   
  4. * 使用方法:   
  5. * $post_string = "app=request&version=beta";   
  6. * request_by_curl('http://facebook.cn/restServer.php',$post_string);   
  7. */    
  8. function request_by_curl($remote_server,$post_string){    
  9.   $ch = curl_init();    
  10.   curl_setopt($ch,CURLOPT_URL,$remote_server);    
  11.   curl_setopt($ch,CURLOPT_POSTFIELDS,'mypost='.$post_string);    
  12.   curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);    
  13.   curl_setopt($ch,CURLOPT_USERAGENT,"Jimmy's CURL Example beta");    
  14.   $data = curl_exec($ch);    
  15.   curl_close($ch);    
  16.   return $data;    
  17. }    
  18. ?>  

3.
Php代码   收藏代码
  1. <?php  
  2. /**   
  3. * 其它版本   
  4. * 使用方法:   
  5. * $post_string = "app=request&version=beta";   
  6. * request_by_other('http://facebook.cn/restServer.php',$post_string);   
  7. */    
  8. function request_by_other($remote_server,$post_string){    
  9.   $context = array(    
  10.     'http'=>array(    
  11.      'method'=>'POST',    
  12.      'header'=>'Content-type: application/x-www-form-urlencoded'."".    
  13.         'User-Agent : Jimmy's POST Example beta'."".    
  14.         'Content-length: '.strlen($post_string)+8,    
  15.      'content'=>'mypost='.$post_string)    
  16.     );    
  17.   $stream_context = stream_context_create($context);    
  18.   $data = file_get_contents($remote_server,FALSE,$stream_context);    
  19.   return $data;    
  20. }    
  21. ?>  


你可能感兴趣的:(php中 curl, fsockopen ,file_get_contents 三个函数)