在一秒PHP内发送多个号码的SMS请求

时间:2015-02-13 05:59:17

标签: php multithreading asynchronous pthreads

我尝试使用API​​发送短信。它每秒发送几乎一条SMS但我想在一秒内使用PHP中的多线程/ pthreads发送多条SMS。怎么可能,或者我怎样才能至少从我的端到异步发送多个SMS请求到API服务器。

//Threads Class
class MThread extends Thread {

public $data;
public $result;

  public function __construct($data){
    $this->data = $data;
   }

  public function run() {

    foreach($this->data as $dt_res){

        // Send the POST request with cURL 
        $ch = curl_init("http://www.example.com"); 
        curl_setopt($ch, CURLOPT_POST, true); 
        curl_setopt($ch, CURLOPT_POSTFIELDS, $dt_res['to']); 
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 
        $res = curl_exec($ch); 
        $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
        curl_close($ch);
        $this->result = $http_code;
        /**/
       }
    }
}

// $_POST['data'] has multi arrays
$request = new MThread($_POST['data']);

if ($request->start()) {
  $request->join();
  print_r($request->result);
}

任何想法都将受到赞赏。

3 个答案:

答案 0 :(得分:5)

您不一定需要使用线程异步发送多个HTTP请求。您可以使用非阻塞I / O,在这种情况下,multicurl是合适的。有些HTTP客户端支持多种支持。 示例(使用Guzzle 6):

$client = new \GuzzleHttp\Client();
$requestGenerator = function() use ($client) {
    $uriList = ['https://www.google.com', 'http://amazon.com', 'http://github.com', 'http://stackoverflow.com'];
    foreach ($uriList as $uri) {
        $request = new \GuzzleHttp\Psr7\Request('GET', $uri);
        $promise = $client->sendAsync($request);
        yield $promise;
    }
};

$concurrency = 4;
\GuzzleHttp\Promise\each_limit($requestGenerator(), $concurrency, function(\GuzzleHttp\Psr7\Response $response) {
    var_dump($response->getBody()->getContents());
}, function(\Exception $e) {
    var_dump($e->getMessage());
})->wait();

答案 1 :(得分:1)

为什么要在run()中做一个foreach?当你这样做时,它就像一个简单的函数,没有多线程。

那么,如何在pthread中使用多线程?

以下是您问题的解决方案:

$thread = array();
foreach ($_POST['data'] as $index => $data) {
    $thread[$index] = new MThread($data);
    $thread[$index]->start();
}

您应该能够通过此代码了解您的错误。

只需将你的foreach删除到run()函数中并使用我的代码即可。

答案 2 :(得分:0)

最好使用像多个工人一样的Beanstalk。