socket_last_error -- Returns the last error on the socket
Syntax
int socket_last_error ( [resource socket] )
This function returns a socket error code.
If a socket resource is passed to this function, the last error which
occurred on this particular socket is returned. If the socket resource is
omitted, 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.
<?php 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())); } ?>
Note: socket_last_error() does not clear the error code, use
socket_clear_error() for this purpose.
Php socket last error Function syntax tag
socket last error php code on this is provided for your study purpose, it will guide you to know how create and design a website using php. use it to practice and train your self online
Php socket last error syntax tutorial
php tutorial guide and code design are for easy learning and programming. The code practice section provided at the top is for practising of this syntax. Use the code section up to practice your php programming online. Learning php is very easy, all you need is to use the examples on this site and practice them to perfect your skills.