php使用curl并发减少后端访问时间的方法分析


Posted in PHP onMay 12, 2016

本文实例讲述了php使用curl并发减少后端访问时间的方法。分享给大家供大家参考,具体如下:

在我们平时的程序中难免出现同时访问几个接口的情况,平时我们用curl进行访问的时候,一般都是单个、顺序访问,假如有3个接口,每个接口耗时500毫 秒那么我们三个接口就要花费1500毫秒了,这个问题太头疼了严重影响了页面访问速度,有没有可能并发访问来提高速度呢?今天就简单的说一下,利用 curl并发来提高页面访问速度,

1、老的curl访问方式以及耗时统计

<?php
function curl_fetch($url, $timeout=3){
  $ch = curl_init();
  curl_setopt($ch, CURLOPT_URL, $url);
  curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  $data = curl_exec($ch);
  $errno = curl_errno($ch);
  if ($errno>0) {
    $data = false;
  }
  curl_close($ch);
  return $data;
}
function microtime_float()
{
  list($usec, $sec) = explode(" ", microtime());
  return ((float)$usec + (float)$sec);
}
$url_arr=array(
   "taobao"=>"http://www.taobao.com",
   "sohu"=>"http://www.sohu.com",
   "sina"=>"http://www.sina.com.cn",
   );
 $time_start = microtime_float();
 $data=array();
 foreach ($url_arr as $key=>$val)
 {
   $data[$key]=curl_fetch($val);
 }
 $time_end = microtime_float();
 $time = $time_end - $time_start;
 echo "耗时:{$time}";
?>

耗时:0.614秒

2、curl并发访问方式以及耗时统计

<?php
function curl_multi_fetch($urlarr=array()){
  $result=$res=$ch=array();
  $nch = 0;
  $mh = curl_multi_init();
  foreach ($urlarr as $nk => $url) {
    $timeout=2;
    $ch[$nch] = curl_init();
    curl_setopt_array($ch[$nch], array(
    CURLOPT_URL => $url,
    CURLOPT_HEADER => false,
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_TIMEOUT => $timeout,
    ));
    curl_multi_add_handle($mh, $ch[$nch]);
    ++$nch;
  }
  /* wait for performing request */
  do {
    $mrc = curl_multi_exec($mh, $running);
  } while (CURLM_CALL_MULTI_PERFORM == $mrc);
  while ($running && $mrc == CURLM_OK) {
    // wait for network
    if (curl_multi_select($mh, 0.5) > -1) {
      // pull in new data;
      do {
        $mrc = curl_multi_exec($mh, $running);
      } while (CURLM_CALL_MULTI_PERFORM == $mrc);
    }
  }
  if ($mrc != CURLM_OK) {
    error_log("CURL Data Error");
  }
  /* get data */
  $nch = 0;
  foreach ($urlarr as $moudle=>$node) {
    if (($err = curl_error($ch[$nch])) == '') {
      $res[$nch]=curl_multi_getcontent($ch[$nch]);
      $result[$moudle]=$res[$nch];
    }
    else
    {
      error_log("curl error");
    }
    curl_multi_remove_handle($mh,$ch[$nch]);
    curl_close($ch[$nch]);
    ++$nch;
  }
  curl_multi_close($mh);
  return $result;
}
$url_arr=array(
   "taobao"=>"http://www.taobao.com",
   "sohu"=>"http://www.sohu.com",
   "sina"=>"http://www.sina.com.cn",
   );
function microtime_float()
{
  list($usec, $sec) = explode(" ", microtime());
  return ((float)$usec + (float)$sec);
}
$time_start = microtime_float();
$data=curl_multi_fetch($url_arr);
$time_end = microtime_float();
$time = $time_end - $time_start;
 echo "耗时:{$time}";
?>

耗时:0.316秒

帅气吧整个页面访问后端接口的时间节省了一半

3、curl相关参数

curl_close — Close a cURL session
curl_copy_handle — Copy a cURL handle along with all of its preferences
curl_errno — Return the last error number
curl_error — Return a string containing the last error for the current session
curl_exec — Perform a cURL session
curl_getinfo — Get information regarding a specific transfer
curl_init — Initialize a cURL session
curl_multi_add_handle — Add a normal cURL handle to a cURL multi handle
curl_multi_close — Close a set of cURL handles
curl_multi_exec — Run the sub-connections of the current cURL handle
curl_multi_getcontent — Return the content of a cURL handle if CURLOPT_RETURNTRANSFER is set
curl_multi_info_read — Get information about the current transfers
curl_multi_init — Returns a new cURL multi handle
curl_multi_remove_handle — Remove a multi handle from a set of cURL handles
curl_multi_select — Wait for activity on any curl_multi connection
curl_setopt_array — Set multiple options for a cURL transfer
curl_setopt — Set an option for a cURL transfer
curl_version — Gets cURL version information

希望本文所述对大家PHP程序设计有所帮助。

PHP 相关文章推荐
用PHP读取RSS feed的代码
Aug 01 PHP
PHP Mysql编程之高级技巧
Aug 27 PHP
让Nginx支持ThinkPHP的URL重写和PATHINFO的方法分享
Aug 08 PHP
PHP中运用jQuery的Ajax跨域调用实现代码
Feb 21 PHP
PHPMailer使用教程(PHPMailer发送邮件实例分析)
Dec 06 PHP
php5.5新数组函数array_column使用
Jul 08 PHP
php 使用array函数实现分页
Feb 13 PHP
PHP文件下载实例代码浅析
Aug 17 PHP
php post json参数的传递和接收处理方法
May 31 PHP
php对微信支付回调处理的方法
Aug 23 PHP
php上传后台无法收到数据解决方法
Oct 28 PHP
PHP实现微信提现功能(微信商城)
Nov 21 PHP
php反射类ReflectionClass用法分析
May 12 #PHP
PHP 的比较运算与逻辑运算详解
May 12 #PHP
php使用文本统计访问量的方法
May 12 #PHP
php格式化json函数示例代码
May 12 #PHP
php ucwords() 函数将字符串中每个单词的首字符转换为大写(实现代码)
May 12 #PHP
yii2带搜索功能的下拉框实例详解
May 12 #PHP
使用php从身份证号中获取一系列线索(星座、生肖、生日等)
May 11 #PHP
You might like
CodeIgniter配置之autoload.php自动加载用法分析
2016/01/20 PHP
PHP asXML()函数讲解
2019/02/03 PHP
仅IE9/10同时支持script元素的onload和onreadystatechange事件分析
2011/04/27 Javascript
利用Node.js了解与测量HTTP所花费的时间详解
2017/09/22 Javascript
详解开发react应用最好用的脚手架 create-react-app
2018/04/24 Javascript
vue better scroll 无法滚动的解决方法
2018/06/07 Javascript
实现一个 Vue 吸顶锚点组件方法
2019/07/10 Javascript
layer关闭当前窗口页面以及确认取消按钮的方法
2019/09/09 Javascript
javascript实现简易计算器功能
2020/09/23 Javascript
Python实现读取txt文件并画三维图简单代码示例
2017/12/09 Python
python脚本生成caffe train_list.txt的方法
2018/04/27 Python
Python3 中把txt数据文件读入到矩阵中的方法
2018/04/27 Python
Python拼接字符串的7种方法总结
2018/11/01 Python
Python设计模式之观察者模式原理与用法详解
2019/01/16 Python
PyQt5组件读取参数的实例
2019/06/25 Python
python求平均数、方差、中位数的例子
2019/08/22 Python
Python读取配置文件(config.ini)以及写入配置文件
2020/04/08 Python
python中的时区问题
2021/01/14 Python
Python3+Flask安装使用教程详解
2021/02/16 Python
瑜伽服装品牌:露露柠檬(lululemon athletica)
2017/06/04 全球购物
李维斯法国官网:Levi’s法国
2019/07/13 全球购物
会计电算一体化个人简历的自我评价
2013/10/15 职场文书
个人生活学习自我评价范文
2013/11/26 职场文书
自我评价正确写法范文
2013/12/10 职场文书
通信生自我鉴定
2014/01/18 职场文书
迟到检讨书500字
2014/02/05 职场文书
企业军训感想
2014/02/07 职场文书
《童趣》教学反思
2014/02/19 职场文书
警示教育活动总结
2014/05/05 职场文书
2014年教师个人工作总结
2014/11/10 职场文书
九华山导游词
2015/02/03 职场文书
小学二年级语文教学反思
2016/03/03 职场文书
你知道哪几种MYSQL的连接查询
2021/06/03 MySQL
Python中异常处理用法
2021/11/27 Python
2021好看的国漫排行榜前十名 《完美世界》上榜,《元龙》排名第一
2022/03/18 国漫
SpringBoot使用ip2region获取地理位置信息的方法
2022/06/21 Java/Android