PHP
downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

pcntl_signal> <pcntl_setpriority
Last updated: Fri, 30 Jan 2009

view this page in

pcntl_signal_dispatch

(No version information available, might be only in CVS)

pcntl_signal_dispatchCalls signal handlers for pending signals

설명

bool pcntl_signal_dispatch ( void )

The pcntl_signal_dispatch() function calls the signal handlers installed by pcntl_signal() for each pending signal.

반환값

성공할 경우 TRUE를, 실패할 경우 FALSE를 반환합니다.

예제

Example #1 pcntl_signal_dispatch() example

<?php
echo "Installing signal handler...\n";
pcntl_signal(SIGHUP,  function($signo) {
     echo 
"signal handler called\n";
});

echo 
"Generating signal SIGHUP to self...\n";
posix_kill(posix_getpid(), SIGHUP);

echo 
"Dispatching...\n";
pcntl_signal_dispatch();

echo 
"Done\n";

?>

위 예제의 출력 예시:

Installing signal handler...
Generating signal SIGHUP to self...
Dispatching...
signal handler called
Done

참고



add a note add a note User Contributed Notes
pcntl_signal_dispatch
There are no user contributed notes for this page.

pcntl_signal> <pcntl_setpriority
Last updated: Fri, 30 Jan 2009
 
 
show source | credits | sitemap | contact | advertising | mirror sites