php socket_recvfrom multithreading

时间:2015-09-28 11:03:22

标签: php multithreading

我有一个等待socket_recvfrom接收内容的问题,否则脚本将无法继续运行

for( $i= 1024 ; $i <= 65535 ; $i++ ) {
$sock[$i] = socket_create(AF_INET, SOCK_DGRAM, SOL_UDP);
socket_bind($sock[$i], $sourceips['madcoder'],$i);
socket_connect($sock[$i], '115.188.58.144 ', 1195);
$request = 'data';
socket_write($sock[$i], $request);
$from = '';
$port = 0;
$valeur = socket_recvfrom($sock[$i], $buf, 1222, 0, $from, $port);
}

此代码基本上每次都在不同的本地端口上发送一个udp请求,看看他是否得到了响应 由于socket_recvfrom

,现在该节目因等待接收数据而陷入困境

我想让它尽可能快地运行而不冒失去回复的风险

我可以使用

socket_set_option($sock[$i], SOL_SOCKET, SO_RCVTIMEO, array('sec' => 1, 'usec' => 0));

但是问题是等待超过1秒太多并且将值设置为低于第二个

将值更改为

array('sec' => 0, 'usec' => 100)

array('sec' => 0.1, 'usec' => 0)

不起作用  所以我在思考多线程,我知道多线程的唯一方法是像我一样的“for”循环 但我真的希望我能尝试更有效的其他方法

1 个答案:

答案 0 :(得分:0)

使用pthreads,http://php.net/manual/en/book.pthreads.php,类似

<?php
class async_sender extends Thread {
public function __construct($i,$sourceip){
  $this->i=$i;
  $this->sourceip=$sourceip;
}
 public $sourceip;
 public $finished=false;
 public $response='';
 public $socket=NULL;
 public $i=-1;
public function run(){
    $this->socket=socket_create(AF_INET, SOCK_DGRAM, SOL_UDP);
    socket_bind($this->socket, $this->sourceip,$this->i);
    socket_connect($this->socket, '115.188.58.144 ', 1195);
    $request = 'data';
    socket_write($this->socket, $request);
    $from = '';
    $port = 0;

    socket_recvfrom($this->socket, $this->response, 1222, 0, $from, $port);
    $this->finished=true;

}
}

$sender_threads=array();
for( $i= 1024 ; $i <= 65535 ; $i++ ) {
$sender_threads[$i]=new async_sender($i,$sourceips['madcoder']);
$sender_threads[$i]->start();
}