우리 모두는 PHP 자체가 멀티스레딩을 지원하지 않는다는 것을 알고 있는데, PHP에서 멀티스레딩을 구현하는 방법은 무엇입니까? 이 기사에서는 주로 PHP 멀티스레딩 솔루션을 공유하여 도움이 되기를 바랍니다.
1. Linux에서 PHP 멀티스레딩
다음은 PHP의 pcntl_fork 함수에서 파생된 것입니다. 시스템 포크, 따라서 이 기사에서 다루는 내용은 Linux/Unix에만 적용됩니다. 먼저 이 함수의 사용법을 살펴보겠습니다. PHP 매뉴얼에는 다음과 같이 나와 있습니다.
<?php$pid = pcntl_fork();if ($pid == -1) { die('could not fork'); } else if ($pid) { // we are the parent pcntl_wait($status); //Protect against Zombie children} else { // we are the child}?>
pcntl_fork를 통해 하위 프로세스를 생성합니다. 반환 값이 -1이면 하위 프로세스 생성이 실패한 것입니다. 부모 프로세스에는 ID가 반환되고, 자식 프로세스에는 0이 반환됩니다. 이해하기 어렵기 때문에 다음과 같이 작성해야 합니다.
<?php$pid = pcntl_fork();if($pid == -1){ //创建失败咱就退出呗,没啥好说的 die('could not fork'); }else{ if($pid){ //从这里开始写的代码是父进程的,因为写的是系统程序,记得退出的时候给个返回值 exit(0); } else{ //从这里开始写的代码都是在新的进程里执行的,同样正常退出的话,最好也给一个返回值 exit(0); } }?>
이 변경 사항은 부모 프로세스가 이를 알고 싶어하는 경우 훨씬 이해하기 쉽습니다. 하위 프로세스가 정상적으로 종료되면 이전 pcntl_wait를 추가할 수 있습니다.
2.stream_socket_client 방식을 통해
function sendStream() { $english_format_number = number_format($number, 4, '.', ''); echo $english_format_number; exit(); $timeout = 10; $result = array(); $sockets = array(); $convenient_read_block = 8192; $host = "test.local.com"; $sql = "select waybill_id,order_id from xm_waybill where status>40 order by update_time desc limit 1 "; $data = Yii::app()->db->createCommand($sql)->queryAll(); $id = 0; foreach ($data as $k => $v) { if ($k % 2 == 0) { $send_data[$k]['body'] = NoticeOrder::getSendData($v['waybill_id']); } else { $send_data[$k]['body'] = array($v['order_id'] => array('extra' => 16)); } $data = json_encode($send_data[$k]['body']); $s = stream_socket_client($host . ":80", $errno, $errstr, $timeout, STREAM_CLIENT_ASYNC_CONNECT | STREAM_CLIENT_CONNECT); if ($s) { $sockets[$id++] = $s; $http_message = "GET /php/test.php?data=" . $data . " HTTP/1.0\r\nHost:" . $host . "\r\n\r\n"; fwrite($s, $http_message); } else { echo "Stream " . $id . " failed to open correctly."; } } while (count($sockets)) { $read = $sockets; stream_select($read, $w = null, $e = null, $timeout); if (count($read)) { /* stream_select generally shuffles $read, so we need to compute from which socket(s) we're reading. */ foreach ($read as $r) { $id = array_search($r, $sockets); $data = fread($r, $convenient_read_block); if (strlen($data) == 0) { echo "Stream " . $id . " closes at " . date('h:i:s') . ".<br> "; fclose($r); unset($sockets[$id]); } else { $result[$id] = $data; } } } else { /* A time-out means that *all* streams have failed to receive a response. */ echo "Time-out!\n"; break; } } print_r($result); }
3. 멀티 프로세스를 통해 멀티스레딩을 대체
function daemon($func_name,$args,$number){ while(true){ $pid=pcntl_fork(); if($pid==-1){ echo "fork process fail"; exit(); }elseif($pid){//创建的子进程 static $num=0; $num++; if($num>=$number){ //当进程数量达到一定数量时候,就对子进程进行回收。 pcntl_wait($status); $num--; } }else{ //为0 则代表是子进程创建的,则直接进入工作状态 if(function_exists($func_name)){ while (true) { $ppid=posix_getpid(); var_dump($ppid); call_user_func_array($func_name,$args); sleep(2); } }else{ echo "function is not exists"; } exit(); } } } function worker($args){ //do something } daemon('worker',array(1),2);
php 설치로 실제 멀티스레딩 방식 pthread를 확장하면 이를 수행할 수 있습니다.
그런 다음 다음과 같이 페이지를 새로 고치고 아래쪽으로 드래그하세요.
다음 페이지에서 버전 2를 찾아보세요
다운로드하세요. 이 v2는 사용할 수만 있습니다. php5 사용
다운로드 및 설치:
또는 다음과 같이 직접 다운로드할 수도 있습니다:
cd /tools wget https://github.com/krakjoe/pthreads/archive/v2.0.10.zip unzip v2.0.10.zip cd pthreads-2.0.10 /usr/local/php/bin/phpize ./configure --with-php-config=/usr/local/php/bin/php-config make make install
참고: PHP는 컴파일할 때 –enable-maintainer-zts를 켜야 합니다
./configure --prefix=/usr/local/php --disable-fileinfo --enable-fpm --with-config-file-path=/etc --with-config-file-scan-dir=/etc/php.d --with-openssl --with-zlib --with-curl --enable-ftp --with-gd --with-xmlrpc --with-jpeg-dir --with-png-dir --with-freetype-dir --enable-gd-native-ttf --enable-mbstring --with-mcrypt=/usr/local/libmcrypt --enable-zip --with-mysql=/usr/local/mysql --without-pear --enable-maintainer-zts
vim /etc/php.ini 添加 extension=pthreads.so
重启php /etc/init.d/php-fpm restart
관련 권장 사항:
위 내용은 PHP 멀티스레딩 솔루션 공유의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!