首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

socket_last_error

(PHP 4 >= 4.1.0, PHP 5, PHP 7)

socket_last_error — Returns the last error on the socket

Description

代码语言:javascript
复制
int socket_last_error ([ resource $socket ] )

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 particularly 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 no error had occurred, or the error had been cleared with socket_clear_error(), the function returns 0.

Parameters

socket

A valid socket resource created with socket_create().

Return Values

This function returns a socket error code.

Examples

Example #1 socket_last_error() example

代码语言:javascript
复制
<?php
$socket?=?@socket_create(AF_INET,?SOCK_STREAM,?SOL_TCP);

if?($socket?===?false)?{
????$errorcode?=?socket_last_error();
????$errormsg?=?socket_strerror($errorcode);
????
????die("Couldn't?create?socket:?[$errorcode]?$errormsg");
}
?>

Notes

Note: socket_last_error() does not clear the error code, use socket_clear_error() for this purpose.

← socket_import_stream

socket_listen →

代码语言:txt
复制
 ? 1997–2017 The PHP Documentation Group

Licensed under the Creative Commons Attribution License v3.0 or later.

扫码关注腾讯云开发者

领取腾讯云代金券

http://www.vxiaotou.com