socket_strerror
PHP 4 >= 4.1.0, PHP 5, PHP 7, PHP 8
socket_strerror - Return a string describing a socket error
Manual
socket_strerror(
int$error_code ): string
socket_strerror takes as its error_code parameter a socket error code as returned by socket_last_error and returns the corresponding explanatory text.
Note:
Although the error messages generated by the socket extension are in English, the system messages retrieved with this function will appear depending on the current locale (LC_MESSAGES).
Parameters
- error_code
-
A valid socket error number, likely produced by socket_last_error.
Return Values
Returns the error message associated with the error_code parameter.