Neueste Web-Entwicklung Tutorials
 

PHP connection_status() Function

<PHP Misc Referenz

Beispiel

Bringen Sie die Verbindung Satus:

<?php
switch (connection_status())
{
case CONNECTION_NORMAL:
  $txt = 'Connection is in a normal state';
  break;
case CONNECTION_ABORTED:
  $txt = 'Connection aborted';
  break;
case CONNECTION_TIMEOUT:
  $txt = 'Connection timed out';
  break;
case (CONNECTION_ABORTED & CONNECTION_TIMEOUT):
  $txt = 'Connection aborted and timed out';
  break;
default:
  $txt = 'Unknown';
  break;
}

echo $txt;
?>
Führen Sie zB »

Definition und Verwendung

Die connection_status() Funktion gibt den aktuellen Verbindungsstatus.

Mögliche Werte können zurückgegeben werden:

  • 0 - CONNECTION_NORMAL - Verbindung läuft normal
  • 1 - connection_aborted - Verbindung wird durch Benutzer oder Netzwerkfehler abgebrochen
  • 2 - connection_timeout - Verbindung Zeitüberschreitung
  • 3 - connection_aborted & connection_timeout

Syntax

connection_status()

Technische Details

Rückgabewert: Gibt den Verbindungsstatus als Bitfeld
PHP Version: 4+

<PHP Misc Referenz