|
pcntl_strerrorRetrieve the system error message associated with the given errno Description
string pcntl_strerror(int
$error_code )
Returns the system error message associated with the given Parameters
Return ValuesReturns the error message, as a string. ExamplesExample #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.
The above example will output something similar to: pcntl_wait failed with errno 10: No child processes See Also
|