(PHP 5 >= 5.3.4, PHP 7, PHP 8)
pcntl_get_last_error — 检索上次失败的 pcntl 函数设置的错误号
检索上次失败的 pcntl 函数设置的错误号(errno
)。可以使用 pcntl_strerror() 检查与该错误号关联的系统错误消息。
此函数没有参数。
返回上次失败的 pcntl 函数设置的错误号(errno
)。如果没有错误,则返回 0。
示例 #1 pcntl_get_last_error() 示例
此示例将尝试在不存在子进程的情况下等待子进程,然后打印出相应的错误消息。
<?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