PHP connection_status() 函數(shù)
PHP connection_status() 函數(shù)
實例
返回連接狀態(tài):
<?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() 函數(shù)返回當(dāng)前的連接狀態(tài)。
可返回的可能值:
- 0 - CONNECTION_NORMAL - 連接運行正常
- 1 - CONNECTION_ABORTED - 連接由用戶或網(wǎng)絡(luò)錯誤終止
- 2 - CONNECTION_TIMEOUT - 連接超時
- 3 - CONNECTION_ABORTED & CONNECTION_TIMEOUT
語法
connection_status()
技術(shù)細(xì)節(jié)
返回值: | 返回連接狀態(tài)位字段。 |
---|---|
PHP 版本: | 4+ |

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