pcntl_errno

(PHP 5 >= 5.3.4)

pcntl_errnoAlias of pcntl_strerror()

Description

This function is an alias of: pcntl_strerror()

Коментарии

<explain>
This example installs an alarm signal, but the callback function does not exist,This will set the last error. Then we will print out the last error.

<?php
set_error_handler
(function(){});
pcntl_signal(SIGALRM,'sig_handler',false);
print 
'Your error returned was (Code):'.pcntl_get_last_error().PHP_EOL;
print 
'Your error info:'.pcntl_strerror(pcntl_get_last_error()).PHP_EOL;
2019-04-06 07:43:37
http://php5.kiev.ua/manual/ru/function.pcntl-errno.html

    Поддержать сайт на родительском проекте КГБ