PHP Doku:: Queries whether a connection is established to a Messaging Server - function.samconnection-isconnected.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige DiensteSimple Asynchronous MessagingSAM FunktionenSAMConnection->isConnected

Ein Service von Reinhard Neidl - Webprogrammierung.

SAM Funktionen

<<SAMConnection->error

SAMConnection->peek>>

SAMConnection->isConnected

(PECL sam >= 0.1.0)

SAMConnection->isConnected Queries whether a connection is established to a Messaging Server

Beschreibung

bool SAMConnection::isConnected ( void )

Calling the "isConnected" method on a Connection object will check whether the PHP script is connected to a messaging server. No messages can be sent or received unless a connection has been established with a Messaging server.

Rückgabewerte

This method returns TRUE if the SAMConnection object is successfully connected to a Messaging server or FALSE otherwise.

Beispiele

Beispiel #1 Checking whether there us a connection to a Messaging Server

<?php

if ($conn->isConnected()) {
  echo 
'Connection is active.';
} else {
  echo 
'No active connection!';
}

?>


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)