2

PHP curl を使用して Web サービスへの SOAP リクエストを実行しています。500 を超えるアイテムの ID の配列があり、ID ごとに SOAP リクエストを送信し、いくつかのパラメーターをテストして変数に生成/保存する XML レスポンスを取得します。 . 残念ながら、配列の 9 つの ID をループすることしかできず、jquery 投稿の firebug で「500 サーバー エラー」が発生します。これら 500 個のアイテムすべてをループするにはどうすればよいですか? 並列接続またはマルチスレッドで実行できますか? もしそうなら、PHPカールでどのようにしますか?

これが私のサンプルコードです。

<?php 
$VehicleIDs = "153,106,128,149,121,123,125,133,130,115,124,116,102,100,101,103,144,113,...........";//over 500 items
$VehicleIDsArray = explode(",", $VehicleIDs);

for($i=0; $i <= count($massVehicleIDsArray); $i++){
            $soapUrl = "http://xxx.asmx";
            $xml_post_string = '<?xml version="1.0" encoding="utf-8"?>
                            <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
                              <soap:Body>
                                <GetInUseEventsForVehicleID>
                                  <VehicleID>'.$massVehicleIDsArray[$i].'</VehicleID>
                                </GetInUseEventsForVehicleID>
                              </soap:Body>
                            </soap:Envelope>';

        $headers = array(
                    "Content-type: text/xml;charset=\"utf-8\"",
                    "Accept: text/xml",
                    "Cache-Control: no-cache",
                    "Pragma: no-cache",
                    "SOAPAction: xxx", // your op URL
                    "Content-length: ".strlen($xml_post_string),
                );
        // PHP cURL  for https connection with auth
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
        curl_setopt($ch, CURLOPT_URL, $soapUrl);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
        curl_setopt($ch, CURLOPT_TIMEOUT, 10);
        curl_setopt($ch, CURLOPT_POST, 1);
        curl_setopt($ch, CURLOPT_POSTFIELDS, $xml_post_string); // xml request
        curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);

        // converting
        $response = curl_exec($ch); 
        curl_close($ch);

        // converting
        $response1 = str_replace("<soap:Body>","",$response);
        $response2 = str_replace("</soap:Body>","",$response1);

        // convertingc to XML
        $parser = simplexml_load_string($response2);   

        /*....................

        MORE CODE TO COMPARE EACH SOAP RESPONSE

        ...................*/
}
?>

ありがとうございました

4

2 に答える 2

1

基本的な問題は制限時間http://www.php.net/manual/en/info.configuration.php#ini.max-execution-timeにあると思います。はい、curl は並列実行をサポートしていますhttp://php.net /manual/ru/function.curl-multi-exec.phpには、curl を並列実行するためのオープンソース ライブラリがいくつかあります。

http://www.phpclasses.org/package/4091-PHP-Retrieve-multiple-pages-simultaneously.html

https://github.com/Fivell/Utfy

https://github.com/jmathai/php-multi-curl

等々。ただし、それでも最大実行時間またはメモリ制限に達する可能性があります

于 2012-11-27T09:15:58.410 に答える