PHP 8.4.0 RC4 available for testing

pcntl_get_last_error

(PHP 5 >= 5.3.4, PHP 7, PHP 8)

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

Descripción

pcntl_get_last_error(): int

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

Parámetros

Esta función no tiene parámetros.

Valores devueltos

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

Ejemplos

Ejemplo #1 pcntl_get_last_error() 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);
}

El resultado del ejemplo sería algo similar a:

pcntl_wait failed with errno 10: No child processes

Ver también

  • pcntl_strerror() - Retrieve the system error message associated with the given errno
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top