PHP connection_status() 函數
PHP connection_status() 函數
實例
返回連接狀態:
<?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;
?>
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;
?>
運行實例 ?
定義和用法
connection_status() 函數返回當前的連接狀態。
可返回的可能值:
- 0 - CONNECTION_NORMAL - 連接運行正常
- 1 - CONNECTION_ABORTED - 連接由用戶或網絡錯誤終止
- 2 - CONNECTION_TIMEOUT - 連接超時
- 3 - CONNECTION_ABORTED & CONNECTION_TIMEOUT
語法
connection_status()
技術細節
返回值: | 返回連接狀態位字段。 |
---|---|
PHP 版本: | 4+ |

相關文章
- PHP 運算符
- PHP Cookie
- PHP 過濾器
- PHP array_diff() 函數
- PHP array_fill_keys() 函數
- PHP array_intersect_uassoc() 函數
- PHP array_reduce() 函數
- PHP array_reverse() 函數
- PHP array_search() 函數
- PHP array_udiff_uassoc() 函數
- PHP array_uintersect() 函數
- PHP array_unshift() 函數
- PHP compact() 函數
- PHP key() 函數
- PHP natsort() 函數
- PHP sort() 函數
- PHP uasort() 函數
- PHP Libxml 函數
- PHP Mail 函數
- PHP 5 MySQLi 函數