この記事では主に、phpのcurlバッチ処理の制御可能な同時実行性と非同期操作について紹介します。必要な方は参考にしてください。この記事の例はphpの実装について説明します。カールのバッチ処理を制御します。参考までに皆さんと共有してください。詳細は次のとおりです。
通常、PHP の cURL はブロック方式で実行されます。つまり、cURL リクエストを作成した後、それが正常に実行されるまで待つか、タイムアウトしてから実行する必要があります。次のリクエスト: API インターフェイス アクセス 一般的には CURL が第一選択です
実際のプロジェクトや独自のガジェット (ニュースの集約、商品価格の監視、価格比較など) を作成するプロセスでは、通常、第 3 のリクエストからデータを取得する必要があります。 URL キューを処理する必要がある場合、パフォーマンスを向上させるために、cURL が提供する
ファミリ関数を使用すると、副作用がなく、簡単な同時実行を実現できます。同時実行の数は制御可能であり、多くのアプリケーションがあります。想像力を働かせてください<?php include 'curl.class.php'; function callback($response, $info, $error, $request) { echo 'response:<br>'; print_r($response); echo '<br>' . date("Y-m-d H:i:s") . ' <br>'; echo '<br>' . str_repeat("-", 100) . '<br>'; } $USER_COOKIE = (!empty($_REQUEST['cookie'])) ? $_REQUEST['cookie'] : file_get_contents("cookie.txt"); $curl = new Curl ("callback"); $data = array( array( 'url' => 'http://dyactive2.vip.xunlei.com/com_sign/?game=qmr&type=rec_gametime&referfrom=&rt=0.42521539455332336', //秦美人 'method' => 'POST', 'post_data' => '', 'header' => null, 'options' => array( CURLOPT_REFERER => "http://niu.xunlei.com/entergame/?gameNo=qmr&fenQuNum=3", CURLOPT_COOKIE => $USER_COOKIE, ) ), array( 'url' => 'http://dyactive2.vip.xunlei.com/com_sign/?game=sq&type=rec_gametime&referfrom=&rt=0.42521539455332336', //神曲 'method' => 'POST', 'post_data' => '', 'header' => null, 'options' => array( CURLOPT_REFERER => "http://niu.xunlei.com/entergame/?gameNo=sq&fenQuNum=41", CURLOPT_COOKIE => $USER_COOKIE, ) ), array( 'url' => 'http://dyactive2.vip.xunlei.com/com_sign/?game=frxz&type=rec_gametime&referfrom=&rt=0.42521539455332336', //凡人修真 'method' => 'POST', 'post_data' => '', 'header' => null, 'options' => array( CURLOPT_REFERER => "http://niu.xunlei.com/entergame/?gameNo=frxz&fenQuNum=3", CURLOPT_COOKIE => $USER_COOKIE, ) ), array( 'url' => 'http://dyactive2.vip.xunlei.com/com_sign/?game=smxj&type=rec_gametime&referfrom=&rt=0.42521539455332336', //神魔仙界 'method' => 'POST', 'post_data' => '', 'header' => null, 'options' => array( CURLOPT_REFERER => "http://niu.xunlei.com/entergame/?gameNo=smxj&fenQuNum=2", CURLOPT_COOKIE => $USER_COOKIE, ) ), array( 'url' => 'http://dyactive2.vip.xunlei.com/com_sign/?game=qsqy&type=rec_gametime&referfrom=&rt=0.42521539455332336', //倾世情缘 'method' => 'POST', 'post_data' => '', 'header' => null, 'options' => array( CURLOPT_REFERER => "http://niu.xunlei.com/entergame/?gameNo=qsqy&fenQuNum=11", CURLOPT_COOKIE => $USER_COOKIE, ) ), ); foreach ($data as $val) { $request = new Curl_request ($val ['url'], $val ['method'], $val ['post_data'], $val ['header'], $val ['options']); $curl->add($request); } $curl->execute(); echo $curl->display_errors();
curl_multi_*
上記がこの記事の全内容です。その他の関連コンテンツについては、PHP 中国語 Web サイトを参照してください。 関連する推奨事項:
phpcurlは偽のリクエストを送信しますphp CURLはCookieを取得してログインメソッドのコード例をシミュレートします
以上がPHPカールバッチ処理により、制御可能な同時および非同期操作を実現の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。