zoukankan      html  css  js  c++  java
  • fopen,file_get_contents,curl

    1.file_get_contents

      

      PHP代码

      <?php   

      $url = http://www.xxx.com/;

      $contents = file_get_contents($url);

      //如果出现中文乱码使用下面代码

      //$getcontent = iconv("gb2312", "utf-8",file_get_contents($url));

      //echo $getcontent;

      echo $contents;

      ?>  

      2.curl

      

      PHP代码

      <?php   

      $url = "http://www.xxx.com/";

      $ch = curl_init();

      $timeout = 5;

      curl_setopt($ch, CURLOPT_URL, $url);

      curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

      curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);

      //在需要用户检测的网页里需要增加下面两行

      //curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);

      //curl_setopt($ch, CURLOPT_USERPWD, US_NAME.":".US_PWD);

      $contents = curl_exec($ch);

      curl_close($ch);

      echo $contents;

      ?>

      3.fopen->fread->fclose

      

      PHP代码

      <?php   

      $handle = fopen ("http://www.xxx.com/", "rb");

      $contents = "";

      do {

         $data = fread($handle, 8192);

         if (strlen($data) == 0) {

         break;

          }

         $contents .= $data;

      } while(true);

      fclose ($handle);

      echo $contents;

      ?>

      Ps1.使用file_get_contents和fopen必须空间开启allow_url_fopen。方法:编辑php.ini,设置 allow_url_fopen = On,allow_url_fopen关闭时fopen和file_get_contents都不能打开远程文件。

      Ps2.使用curl必须空间开启curl。方法:WIN下修改php.ini,将extension=php_curl.dll前面的分号去 掉,而且需要拷贝ssleay32.dll和libeay32.dll到C:\WINDOWS\system32下;Linux下要安装curl扩展。

      建议打开URL时使用file_get_contents()方法,可优化打开速度

      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方式获取数据。

      

      因此,我还是比较倾向于使用curl来访问远程url。Php有curl模块扩展,功能很是强大。

  • 相关阅读:
    gym101350 c h m
    Gym
    poj 1511 Invitation Cards(最短路中等题)
    POJ 1062 昂贵的聘礼(最短路中等题)
    POJ 1125 Stockbroker Grapevine(最短路基础题)
    【Linux】buffer cache free 理解
    python 绘图 工具
    【Linux】时间跟时区的校正
    python conda、pip区别,python 下 faiss 安装
    celery-demo
  • 原文地址:https://www.cnblogs.com/webu/p/2751847.html
Copyright © 2011-2022 走看看