Return the connection satus in PHP

Description

The following code shows how to return the connection satus.

Example


/* www . ja  v a 2  s.c om*/
<?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;
?>

The code above generates the following result.





















Home »
  PHP Tutorial »
    Development »




Environment
Error
Hash
Include
Locale
Math
Network
Output
Reflection
PHP Regular Expressions