tutoriais mais recente desenvolvimento web
 

PHP connection_status() Function

<PHP Diversos Referência

Exemplo

Devolver o satus conexão:

<?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;
?>
Exemplo executar »

Definição e Uso

O connection_status() função retorna o status da conexão atual.

Os possíveis valores que podem ser retornados são:

  • 0 - CONNECTION_NORMAL - Ligação está funcionando normalmente
  • 1 - connection_aborted - conexão é abortada pelo usuário ou erro de rede
  • 2 - connection_timeout - ligação excedido
  • 3 - connection_aborted & connection_timeout

Sintaxe

connection_status()

Detalhes técnicos

Valor de retorno: Retorna o status da conexão bitfield
PHP Versão: 4+

<PHP Diversos Referência