php connection_status 関数は、現在の接続ステータスを返すために使用されます。その構文は connection_status() で、戻り値は接続ステータス ビット フィールドです。
#php connection_status 関数の使用方法?
定義と使用法
connection_status() 関数は、現在の接続ステータスを返します。
返される可能性のある値:
0 - CONNECTION_NORMAL - 接続は正常に動作していました
1 - CONNECTION_ABORTED - 接続は終了されましたユーザーまたはネットワーク エラーによる
2 - CONNECTION_TIMEOUT - 接続タイムアウト
3 - CONNECTION_ABORTED & CONNECTION_TIMEOUT
構文
connection_status()
戻り値: 接続ステータスビットフィールドを返します。
PHP バージョン: 4
インスタンス
戻り接続ステータス:
<?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; ?>
以上がPHPのconnection_status関数の使い方の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。