posix_strerror

(PHP 4 >= 4.2.0, PHP 5, PHP 7)

posix_strerrorRetrieve the system error message associated with the given errno

说明

posix_strerror ( int $errno ) : string

Returns the POSIX system error message associated with the given errno. You may get the errno parameter by calling posix_get_last_error().

参数

errno

A POSIX error number, returned by posix_get_last_error(). If set to 0, then the string "Success" is returned.

返回值

Returns the error message, as a string.

范例

Example #1 posix_strerror() example

This example will attempt to kill a process which does not exist, then will print out the corresponding error message.

<?php
posix_kill
(50,SIGKILL);
echo 
posix_strerror(posix_get_last_error())."\n";
?>

以上例程的输出类似于:

No such process

参见

相关文章
php cubrid mysql 兼容性函数 get the error messagephp ibm db2 函数 returns the last connection error message and sqlcode valuephp db++ 函数 get error string for given errorcode or last errorphp eio 函数 returns string describing the last error associated with a request resourcephp frontbase 函数 returns the error message from previous operationphp imap 函数 read an overview of the information in the headers of the given messagephp imap 函数 gets the message sequence number for the given uidphp ingres 函数 get a meaningful error message for the last error generatedphp msql 函数 returns error message of last msql callphp odbc 函数 lists columns and associated privileges for the given tablephp pcntl 函数 retrieve the system error message associated with the given errnophp posix 函数 retrieve the error number set by the last posix function that failedphp posix 函数 retrieve the system error message associated with the given errnophp rrd 函数 gets latest error messagephp session pgsql 函数 increments error counts and sets last error messagephp session pgsql 函数 returns number of errors and last error messagephp stream 函数 runs the equivalent of the select system call on the given arrays of streams with a timeout specified by tv sec and tv usecphp yp/nis 函数 returns the error string associated with the given error codephp intltimezone get the region code associated with the given system time zone idphp ziparchive returns the status error message system and/or zip messages
关注编程学问公众号