socket_last_errorPodręcznik PHPPoprzedniNastępnysocket_last_error (PHP 4 >= 4.1.0)socket_last_error -- Returns the last error on the socket Descriptionint socket_last_error ( [resource socket])OstrzeżenieTa funkcja jest w stadium
EKSPERYMENTALNYM. Oznacza to, że zachowanie funkcji, jej
nazwa, w zasadzie wszystko udokumentowane tutaj może zostać zmienione w
przyszłych wersjach PHP bez wcześniejszego uprzedzenia. Używaj tej funkcji na
własne ryzyko.
This function returns a socket error code.
If a socket resource is passed to this function, the last error which
occured on this particular socket is returned. If the socket resource is
ommited, the error code of the last failed socket function is returned.
The latter is in particular helpful for functions like
socket_create() which don't return a socket on
failure and socket_select() which can fail for reasons
not directly tied to a particular socket. The error code is suitable to
be fed to socket_strerror() which returns a string
describing the given error code.
if (false == ($socket = @socket_create(AF_INET, SOCK_STREAM, SOL_TCP))) {
die("Couldn't create socket, error code is: " . socket_last_error() .
",error message is: " . socket_strerror(socket_last_error()));
}
Notatka:
socket_last_error() does not clear the error code, use
socket_clear_error() for this purpose.
PoprzedniSpis treściNastępnysocket_iovec_setPoczątek rozdziałusocket_listen
Wyszukiwarka
Podobne podstrony:
function socket last errorfunction socket last errorfunction pg last errorfunction imap last errorfunction socket clear errorfunction imap last errorfunction imap last errorfunction socket fd issetfunction socket selectfunction dbplus lastfunction socket createfunction socket readfunction socket acceptfunction socket iovec fetchfunction socket set nonblockfunction java last exception clearfunction socket selectfunction pg last noticewięcej podobnych podstron