En son web geliştirme öğreticiler
 

PHP connection_status() Function

<PHP Çeşitli Referans

Örnek

Bağlantı satus Dönüş:

<?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;
?>
»Run örnek

Tanımı ve Kullanımı

connection_status() işlevi, geçerli bağlantı durumunu döndürür.

iade edilebilir Olası değerler şunlardır:

  • 0 - CONNECTION_NORMAL - Bağlantı normal çalışırken
  • 1 - connection_aborted - Bağlantı kullanıcı veya ağ hatası iptal edilirse
  • 2 - connection_timeout - Bağlantı zaman aşımına uğradı
  • 3 - connection_aborted ve connection_timeout

Sözdizimi

connection_status()

Teknik detaylar

Geri dönüş değeri: Bağlantı durumu bit maskesini döndürür
PHP Sürümü: 4+

<PHP Çeşitli Referans