downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  

<socket_getsocknamesocket_listen>
Last updated: Thu, 26 Jun 2008

socket_last_error

(PHP 4 >= 4.0.7, PHP 5)

socket_last_error — Returns the last error on the socket

Description

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.

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

<?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.



add a noteadd a note User Contributed Notes
Returns the last error on the socket
There are no user contributed notes for this page.




<socket_getsocknamesocket_listen>
Last updated: Thu, 26 Jun 2008
show source | credits | sitemap | contact | advertising | mirror sites
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://phpbuilder.com/
Last updated: Tue Nov 1 20:20:59 2005 EST
Columns / Articles | Tips / Quickies | News | News Linking and RSS Feeds | Shared Code Library
Mail Archives | Support / Discussion Forums | Get Started! Links | Contribute! | Docs