PHPでの非同期関数呼び出し


86

私はPHPWebアプリケーションに取り組んでおり、ユーザーの要求に基づいてリモートサーバーから誰かをフェッチするなど、要求でいくつかのネットワーク操作を実行する必要があります。

関数にデータを渡す必要があり、関数からの出力も必要な場合、PHPで非同期動作をシミュレートすることは可能ですか?

私のコードは次のようなものです:

<?php

     $data1 = processGETandPOST();
     $data2 = processGETandPOST();
     $data3 = processGETandPOST();

     $response1 = makeNetworkCall($data1);
     $response2 = makeNetworkCall($data2);
     $response3 = makeNetworkCall($data3);

     processNetworkResponse($response1);
     processNetworkResponse($response2);
     processNetworkResponse($response3);

     /*HTML and OTHER UI STUFF HERE*/

     exit;
?>

3つのリクエストを行うと、各ネットワーク操作が完了するまでに約5秒かかり、アプリケーションの応答時間に合計15秒が追加されます。

makeNetworkCall()関数は、HTTPPOSTリクエストを実行するだけです。

リモートサーバーはサードパーティのAPIであるため、制御することはできません。

PS:AJAXやその他のことについての提案には答えないでください。私は現在、PHPを介してこれを実行できるかどうかを探しています。C++拡張機能などを使用している可能性があります。


使用してみてくださいCURL...火災の要求に及びウェブからいくつかのデータをフェッチ
ボグダンBurym

私は答えがここにあると信じています:stackoverflow.com/questions/13846192/…クイックノート:スレッドを使用する
DRAX 2013年


PHPのstream_select関数を使用して、非ブロッキングコードを実行できます。Reactはこれを使用して、node.jsと同様のイベント駆動型ループを作成します。
クインコメンダント2015

回答:


20

今日では、スレッドよりもキューを使用する方が良いです(Laravelを使用しない人のために、このような他の実装がたくさんあります)。

基本的な考え方は、元のPHPスクリプトがタスクまたはジョブをキューに入れることです。次に、キュージョブワーカーを他の場所で実行し、ジョブをキューから取り出して、元のPHPとは独立して処理を開始します。

利点は次のとおりです。

  1. スケーラビリティ-需要に対応するためにワーカーノードを追加するだけです。このようにして、タスクは並行して実行されます。
  2. 信頼性-RabbitMQ、ZeroMQ、Redisなどの最新のキューマネージャーは、非常に信頼性が高くなっています。


8

直接的な答えはありませんが、次のことを調べてみてください。


3

ここでは、cURLが唯一の実際の選択になります(それか、非ブロッキングソケットといくつかのカスタムロジックを使用します)。

このリンクはあなたを正しい方向に送るはずです。PHPには非同期処理はありませんが、複数のWebリクエストを同時に実行しようとしている場合は、cURLmultiがそれを処理します。


2

HTMLやその他のUIのものがデータを返す必要がある場合、それを非同期化する方法はないだろうと思います。

PHPでこれを行う唯一の方法は、データベースにリクエストを記録し、毎分cronチェックを行うか、Gearmanキュー処理やexec()コマンドラインプロセスなどを使用することだと思います。

その間、phpページは進行状況をチェックするために数秒ごとにリロードするhtmlまたはjsを生成する必要がありますが、理想的ではありません。

この問題を回避するために、いくつの異なるリクエストを期待していますか?それらをすべて1時間ごとに自動的にダウンロードして、データベースに保存できますか?


1

この古い質問には新しい答えがあります。最近のPHPにはいくつかの「非同期」ソリューションがあります(フレームワークレベルで管理するのではなく、新しい独立したPHPプロセスを生成するという意味でPythonのマルチプロセスと同等です)

私が見た2つの解決策は

それらを試してみてください!



0

ここではcURLソリューションに関するコードが必要だと思うので、私と共有します(PHPマニュアルとコメントとしていくつかのソースを混ぜて書かれています)。

いくつかの並列HTTPリクエスト(のドメイン$aURLs)を実行し、各リクエストが完了すると応答を出力します(そして$done、他の可能な用途のためにそれらを保存します)。

リアルタイムの印刷部分と過剰なコメントのため、コードは必要以上に長くなりますが、回答を編集して改善してください。

<?php
/* Strategies to avoid output buffering, ignore the block if you don't want to print the responses before every cURL is completed */
ini_set('output_buffering', 'off'); // Turn off output buffering
ini_set('zlib.output_compression', false); // Turn off PHP output compression       
//Flush (send) the output buffer and turn off output buffering
ob_end_flush(); while (@ob_end_flush());        
apache_setenv('no-gzip', true); //prevent apache from buffering it for deflate/gzip
ini_set('zlib.output_compression', false);
header("Content-type: text/plain"); //Remove to use HTML
ini_set('implicit_flush', true); // Implicitly flush the buffer(s)
ob_implicit_flush(true);
header('Cache-Control: no-cache'); // recommended to prevent caching of event data.
$string=''; for($i=0;$i<1000;++$i){$string.=' ';} output($string); //Safari and Internet Explorer have an internal 1K buffer.
//Here starts the program output

function output($string){
    ob_start();
    echo $string;
    if(ob_get_level()>0) ob_flush();
    ob_end_clean();  // clears buffer and closes buffering
    flush();
}

function multiprint($aCurlHandles,$print=true){
    global $done;
    // iterate through the handles and get your content
    foreach($aCurlHandles as $url=>$ch){
        if(!isset($done[$url])){ //only check for unready responses
            $html = curl_multi_getcontent($ch); //get the content           
            if($html){
                $done[$url]=$html;
                if($print) output("$html".PHP_EOL);
            }           
        }
    }
};

function full_curl_multi_exec($mh, &$still_running) {
    do {
      $rv = curl_multi_exec($mh, $still_running); //execute the handles 
    } while ($rv == CURLM_CALL_MULTI_PERFORM); //CURLM_CALL_MULTI_PERFORM means you should call curl_multi_exec() again because there is still data available for processing
    return $rv;
} 

set_time_limit(60); //Max execution time 1 minute

$aURLs = array("http://domain/script1.php","http://domain/script2.php");  // array of URLs

$done=array();  //Responses of each URL

    //Initialization
    $aCurlHandles = array(); // create an array for the individual curl handles
    $mh = curl_multi_init(); // init the curl Multi and returns a new cURL multi handle
    foreach ($aURLs as $id=>$url) { //add the handles for each url        
        $ch = curl_init(); // init curl, and then setup your options
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); // returns the result - very important
        curl_setopt($ch, CURLOPT_HEADER, 0); // no headers in the output
        $aCurlHandles[$url] = $ch;
        curl_multi_add_handle($mh,$ch);
    }

    //Process
    $active = null; //the number of individual handles it is currently working with
    $mrc=full_curl_multi_exec($mh, $active); 
    //As long as there are active connections and everything looks OK…
    while($active && $mrc == CURLM_OK) { //CURLM_OK means is that there is more data available, but it hasn't arrived yet.  
        // Wait for activity on any curl-connection and if the network socket has some data…
        if($descriptions=curl_multi_select($mh,1) != -1) {//If waiting for activity on any curl_multi connection has no failures (1 second timeout)     
            usleep(500); //Adjust this wait to your needs               
            //Process the data for as long as the system tells us to keep getting it
            $mrc=full_curl_multi_exec($mh, $active);        
            //output("Still active processes: $active".PHP_EOL);        
            //Printing each response once it is ready
            multiprint($aCurlHandles);  
        }
    }

    //Printing all the responses at the end
    //multiprint($aCurlHandles,false);      

    //Finalize
    foreach ($aCurlHandles as $url=>$ch) {
        curl_multi_remove_handle($mh, $ch); // remove the handle (assuming  you are done with it);
    }
    curl_multi_close($mh); // close the curl multi handler
?>

0

1つの方法はpcntl_fork()、再帰関数で使用することです。

function networkCall(){
  $data = processGETandPOST();
  $response = makeNetworkCall($data);
  processNetworkResponse($response);
  return true;
}

function runAsync($times){
  $pid = pcntl_fork();
  if ($pid == -1) {
    die('could not fork');
  } else if ($pid) {
    // we are the parent
    $times -= 1;
    if($times>0)
      runAsync($times);
    pcntl_wait($status); //Protect against Zombie children
  } else {
    // we are the child
    networkCall();
    posix_kill(getmypid(), SIGKILL);
  }
}

runAsync(3);

1つpcntl_fork()は、Apacheを介してスクリプトを実行すると、スクリプトが機能しないことです(Apacheではサポートされていません)。したがって、この問題を解決する1つの方法はexec('php fork.php',$output);、別のファイルから次のようにphpcliを使用してスクリプトを実行することです。これを行うには、2つのファイルがあります。1つはApacheによってロードされ、もう1つはexec()Apacheによってロードされたファイル内から次のように実行されます。

apacheLoadedFile.php

exec('php fork.php',$output);

fork.php

function networkCall(){
  $data = processGETandPOST();
  $response = makeNetworkCall($data);
  processNetworkResponse($response);
  return true;
}

function runAsync($times){
  $pid = pcntl_fork();
  if ($pid == -1) {
    die('could not fork');
  } else if ($pid) {
    // we are the parent
    $times -= 1;
    if($times>0)
      runAsync($times);
    pcntl_wait($status); //Protect against Zombie children
  } else {
    // we are the child
    networkCall();
    posix_kill(getmypid(), SIGKILL);
  }
}

runAsync(3);
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.