PHP.nl

pcntl_get_last_error

pcntl_get_last_error

Retrieve the error number set by the last pcntl function which failed

int **pcntl_get_last_error**

Retrieve the error number () set by the last pcntl function that failed. The system error message associated with the error number may be checked with . errno``pcntl_strerror

Returns the error number () set by the last pcntl function that failed. If there was no error, 0 is returned. errno

Voorbeeld: example

This example will attempt to wait on child processes in a situation where no child process exists, then will print out the corresponding error message.

<?php
$pid = pcntl_wait($status);
if ($pid === -1) {
    $errno = pcntl_get_last_error();
    $message = pcntl_strerror($errno);
    fwrite(STDERR, 'pcntl_wait failed with errno ' . $errno
           . ': ' . $message . PHP_EOL);
}
pcntl_wait failed with errno 10: No child processes

pcntl_strerror