PHP 8.4.24 Released!

pcntl_strerror

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

pcntl_strerrorRetrieve the system error message associated with the given errno

Опис

function pcntl_strerror(int $error_code): string

Returns the system error message associated with the given error_code (errno) of the last pcntl function that failed. The error_code parameter may be obtained by calling pcntl_get_last_error().

Параметри

error_code

An error number (errno), returned by pcntl_get_last_error().

Значення, що повертаються

Returns the error message, as a string.

Приклади

Приклад #1 pcntl_strerror() 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

Прогляньте також

add a note

User Contributed Notes

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