php多进程
安装
在PHP中进程控制支持默认是关闭的。您需要使用 –enable-pcntl 配置选项重新编译PHP的 CGI或CLI版本以打开进程控制支持。
Note:
当前,这个模块没有非Unix平台可用的函数(即非Unix类系统不支持此模块)。
sh-3.2# cd php-5.5.35/ext/pcntl
/usr/local/php55/bin/phpize
sh-3.2# phpize && ./configure && make install
sh-3.2# echo “extension=pcntl.so” >> /etc/php.ini
sh-3.2# apachectl restart
checking if everything is ok.
sh-3.2# php -m | grep pcntl
pcntl
testing pcntl with Facebook’s PHP shell:
http://www.phpsh.org/
PCNTL函数族--PHP多进程编程
php有一组进程控制函数,使得php能在*nix系统中实现跟c一样的创建子进程、使用exec函数执行程序、处理信号等功能。
谨以此句献给超工,在web server环境中不要使用这组函数,因为会导致不可预料的结果。另,windows作为非类unix系统,没有这些函数。
PCNTL使用ticks来作为信号处理机制(signal handle callbackmechanism),可以最小程度地降低处理异步事件时的负载。何谓ticks?Tick 是一个在代码段中解释器每执行 N条低级语句就会发生的事件,这个代码段需要通过declare来指定。
PCNTL的函数都有这么些:
信号处理
int pcntl_alarm ( int $seconds )
设置一个$seconds秒后发送SIGALRM信号的计数器
bool pcntl_signal ( int $signo , callback $handler [, bool $restart_syscalls ] )
为$signo设置一个处理该信号的回调函数
下面是一个隔5秒发送一个SIGALRM信号,并由signal_handler函数获取,然后打印一个“Caught SIGALRM”的例子:
void pcntl_exec ( string $path [, array $args [, array $envs ]] )
在当前的进程空间中执行指定程序,类似于c中的exec族函数。所谓当前空间,即载入指定程序的代码覆盖掉当前进程的空间,执行完该程序进程即结束。
- <?php
- $dir = '/home/shankka/';
- $cmd = 'ls';
- $option = '-l';
- $pathtobin = '/bin/ls';
- $arg = array($cmd, $option, $dir);
- pcntl_exec($pathtobin, $arg);
- echo '123'; //不会执行到该行
- ?>
- <?php
- $dir = '/home/shankka/';
- $cmd = 'ls';
- $option = '-l';
- $pathtobin = '/bin/ls';
- $arg = array($cmd, $option, $dir);
- pcntl_exec($pathtobin, $arg);
- echo '123'; //不会执行到该行
- ?>
创建进程
int pcntl_fork ( void )
为当前进程创建一个子进程
int pcntl_wait ( int &$status [, int $options ] )
阻塞当前进程,只到当前进程的一个子进程退出或者收到一个结束当前进程的信号。
int pcntl_waitpid ( int $pid , int &$status [, int $options ] )
功能同pcntl_wait,区别为waitpid为等待指定pid的子进程。当pid为-1时pcntl_waitpid与pcntl_wait一样。
在pcntl_wait和pcntl_waitpid两个函数中的$status中存了子进程的状态信息,这个参数可以用于pcntl_wifexited、pcntl_wifstopped、pcntl_wifsignaled、pcntl_wexitstatus、pcntl_wtermsig、pcntl_wstopsig、pcntl_waitpid这些函数。
01.
<?php
02.
$pid
= pcntl_fork();
03.
if
(
$pid
)
04.
{
05.
pcntl_wait(
$status
);
06.
$id
=
getmypid
();
07.
echo
"parent process,pid {$id}, child pid {$pid} "
;
08.
}
09.
else
10.
{
11.
$id
=
getmypid
();
12.
echo
"child process,pid {$id} "
;
13.
sleep(2);
14.
}
15.
?>
01.
<?php
02.
$pid
= pcntl_fork();
03.
if
(
$pid
)
04.
{
05.
pcntl_wait(
$status
);
06.
$id
=
getmypid
();
07.
echo
"parent process,pid {$id}, child pid {$pid} "
;
08.
}
09.
else
10.
{
11.
$id
=
getmypid
();
12.
echo
"child process,pid {$id} "
;
13.
sleep(2);
14.
}
15.
?>
子进程在输出child process等字样之后sleep了2秒才结束,而父进程阻塞着直到子进程退出之后才继续运行。
进程优先级:
int pcntl_getpriority ([ int $pid [, int $process_identifier ]] )
取得进程的优先级,即nice值,默认为0,在我的测试环境的linux中(CentOS release 5.2 (Final)
),优先级为-20到19,-20为优先级最高,19为最低。(手册中为-20到20)
bool pcntl_setpriority ( int $priority [, int $pid [, int $process_identifier ]] )
设置进程的优先级