pcntl_signal_get_handler

(PHP 7 >= 7.1.0)

pcntl_signal_get_handlerGet the current handler for specified signal

Descrierea

pcntl_signal_get_handler ( int $signo ) : mixed

The pcntl_signal_get_handler() function will get the current handler for the specified signo.

Parametri

signo

The signal number.

Valorile întoarse

This function may return an integer value that refers to SIG_DFL or SIG_IGN. If you set a custom handler a string value containing the function name is returned.

Istoricul schimbărilor

Versiune Descriere
7.1.0 pcntl_signal_get_handler() has been added.

Exemple

Example #1 pcntl_signal_get_handler() example

<?php
var_dump
(pcntl_signal_get_handler(SIGUSR1)); // Outputs: int(0)

function pcntl_test($signo) {}
pcntl_signal(SIGUSR1'pcntl_test');
var_dump(pcntl_signal_get_handler(SIGUSR1)); // Outputs: string(10) "pcntl_test"

pcntl_signal(SIGUSR1SIG_DFL);
var_dump(pcntl_signal_get_handler(SIGUSR1)); // Outputs: int(0)

pcntl_signal(SIGUSR1SIG_IGN);
var_dump(pcntl_signal_get_handler(SIGUSR1)); // Outputs: int(1)
?>

A se vedea și

add a note add a note

User Contributed Notes 2 notes

up
2
jrdbrndt at gmail dot com
6 years ago
It is worth noting that supplying an invalid signal number will trigger a warning and return false.
up
0
MAL
3 years ago
If the signal handler is a Closure, the function itself is returned:

pcntl_signal(SIGHUP, function ($signo, $siginfo) {
    echo SIGHUP;
});

var_dump(pcntl_signal_get_handler(SIGHUP)); // Outputs: string(6) "SIGHUP"
To Top