PHP: socket_clear_error - Manual
(PHP 4 >= 4.2.0, PHP 5, PHP 7, PHP 8)
socket_clear_error — Clears the error on the socket or the last error code
Description
This function allows explicitly resetting the error code value either of a socket or of the extension global last error code. This may be useful to detect within a part of the application if an error occurred or not.
Return Values
No value is returned.
Changelog
| Version | Description |
|---|---|
| 8.0.0 |
socket is a Socket instance now;
previously, it was a resource.
|
| 8.0.0 |
socket is nullable now.
|
See Also
- socket_last_error() - Returns the last error on the socket
- socket_strerror() - Return a string describing a socket error
Found A Problem?
raphael at engenhosweb dot com dot br ¶
14 years ago
You can do this too, with anonymous function:
<?php
$socket = @socket_create(AF_INET, SOCK_STREAM, SOL_TCP) or function() {
$errstr = socket_strerror(socket_last_error());
echo ("Failed to create socket: " . $errstr);
socket_clear_error();
};
?>ludvig dot ericson at gmail dot com ¶
20 years ago
If you want to clear your error in a small amount of code, do a similar hack as to what most people do in SQL query checking,
<?php
$result = mysql_query($sql) or die(/* Whatever code */);
?>
It could look like this:
<?php
if (!($socket = socket_create(/* Whatever code */)) {
echo ("Failed to create socket: " . socket_strerror(socket_last_error()) and socket_clear_error());
}
?>
As you can see, I use "and" here instead of "or" since the first part will always return true, thus if you use or PHP's lazy boolean checking will not execute the last part, which it will with an and if the first part is true.