Net_Socket::connect()

Net_Socket::connect() -- connects to a server

Synopsis

require_once 'Net/Socket.php';

boolean Net_Socket::connect (string $addr, integer $port, boolean [$persistent = NULL], integer [$timeout = NULL])

Beschreibung

Connect to the specified port. If called when the socket is already connected, it disconnects and connects again.

Rückgabewert

boolean - Gibt bei Erfolg TRUE zurück, bei einem Fehler ein Objekt der Klasse PEAR_Error.

Fehler-Meldungen

Tabelle 49-1. Mögliche Fehler-Arten

Error codeError messageReasonSolution
everyevery The connection could not be established because

  • wrong server name or adress

  • the host itself is not link to a network

  • a firewall does not allow an access

Check for server name, the connection to the net and possible firewalls on client or server side

Hinweise

Diese Methode kann nicht statisch aufgerufen werden.

Siehe auch

Net_Socket::disconnect()