mqseries 函数
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程

mqseries_strerror

(PECL mqseries >= 0.10.0)

mqseries_strerrorReturns the error message corresponding to a result code (MQRC).

说明

string mqseries_strerror ( int $reason )

mqseries_strerror() returns the message that correspond to the reason result code.

参数

reason

Reason code qualifying the compCode.

返回值

string representation of the reason code message.

范例

Example #1 mqseries_strerror() example

<?php
    
if ($comp_code !== MQSERIES_MQCC_OK) {
        
printf("open CompCode:%d Reason:%d Text:%s<br>\n"$comp_code$reasonmqseries_strerror($reason));
        exit;
    }
?>

上例将输出:

Connx CompCode:2 Reason:2059 Text:Queue manager not available for connection.                    


mqseries 函数
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程