update : 2015.11.03
php.shukuma.com검색:
|
posix_strerror(PHP 4 >= 4.2.0, PHP 5) posix_strerror — Retrieve the system error message associated with the given errno 설명
string posix_strerror
( int
$errno
)
Returns the POSIX system error message associated with the given
인수
반환값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 위 예제의 출력 예시: No such process |