update : 2015.11.03
php.shukuma.com검색:
|
pcntl_signal(PHP 4 >= 4.1.0, PHP 5) pcntl_signal — Installs a signal handler 설명
bool pcntl_signal
( int
$signo
, callable|int $handler
[, bool $restart_syscalls = true
] )
The pcntl_signal() function installs a new
signal handler or replaces the current signal handler for the signal indicated by 인수
반환값
성공 시 변경점
예제
Example #1 pcntl_signal() example
<?php 주의pcntl_signal() doesn't stack the signal handlers, but replaces them. 참고
|