首页 > 后端开发 > PHP问题 > php connection_status函数怎么用

php connection_status函数怎么用

藏色散人
发布: 2023-02-22 19:26:01
原创
3341 人浏览过

php connection_status函数用于返回当前的连接状态,其语法是connection_status(),返回值是返回连接状态位字段。

php 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 = &#39;Connection is in a normal state&#39;;
break;
case CONNECTION_ABORTED:
$txt = &#39;Connection aborted&#39;;
break;
case CONNECTION_TIMEOUT:
$txt = &#39;Connection timed out&#39;;
break;
case (CONNECTION_ABORTED & CONNECTION_TIMEOUT):
$txt = &#39;Connection aborted and timed out&#39;;
break;
default:
$txt = &#39;Unknown&#39;;
break;
}
echo $txt;
?>
登录后复制

以上是php connection_status函数怎么用的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板