Home  >  Article  >  php教程  >  PHP single-threaded and multi-threaded calls

PHP single-threaded and multi-threaded calls

WBOY
WBOYOriginal
2016-12-05 13:26:251471browse

 //curl_multi_init()
 session_start();
 $url = 'http://localhost.huawei.com:8060/ecommunity/index.php?app=admin&mod=DataMove&act=moveData_share';
 $ch = curl_init();
 curl_setopt ($ch, CURLOPT_URL, $url);
 curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)');
 curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
 curl_setopt($ch, CURLOPT_TIMEOUT,43200);
 $dxycontent = curl_exec($ch);
 curl_close($ch);
 echo $dxycontent;
?>

 

$url){   $conn[$key] = curl_init();   curl_setopt ($conn[$key], CURLOPT_URL, $url);   curl_setopt($conn[$key], CURLOPT_USERAGENT, 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)');   curl_setopt ($conn[$key], CURLOPT_RETURNTRANSFER, 1);   curl_setopt($conn[$key], CURLOPT_TIMEOUT,43200);   curl_multi_add_handle($mh,$conn[$key]);  }    $running=null;  // 执行批处理句柄  do {   //usleep(10000);   curl_multi_exec($mh,$running);  } while ($running > 0 );    $results = Array();  foreach($conn as $ckey => $cvalue){      curl_close ($conn[$ckey]); //关闭语柄   $results[$ckey] = curl_multi_getcontent($conn[$ckey]);   curl_multi_remove_handle ( $mh, $conn[$ckey] ); //释放资源

 }  curl_multi_close($mh);  print_r( $results); ?>

 

bat调用

@echo off
 echo "begin..................................."
 d: xampphtdocstrial
 php moveUser_1.php
 pause

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn