欢迎访问服务器技术网-www.fuwuqijishu.com

PHP connection_status() 函数

PHP fuwuqijishu 2年前 (2022-09-04) 18次浏览 0个评论 扫描二维码
文章目录[隐藏]

PHP connection_status() 函数

PHP Misc 参考手册

实例

返回连接状态:

<?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;
?>


定义和用法

connection_status() 函数返回当前的连接状态。

可返回的可能值:

  • 0 – CONNECTION_NORMAL – 连接运行正常
  • 1 – CONNECTION_ABORTED – 连接由用户或网络错误终止
  • 2 – CONNECTION_TIMEOUT – 连接超时
  • 3 – CONNECTION_ABORTED & CONNECTION_TIMEOUT

语法

connection_status()

技术细节

返回值: 返回连接状态位字段。
PHP 版本: 4+


PHP Misc 参考手册

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2205.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900