array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'zh', ), 'this' => array ( 0 => 'function.mqseries-strerror.php', 1 => 'mqseries_strerror', 2 => 'Returns the error message corresponding to a result code (MQRC)', ), 'up' => array ( 0 => 'ref.mqseries.php', 1 => 'mqseries 函数', ), 'prev' => array ( 0 => 'function.mqseries-set.php', 1 => 'mqseries_set', ), 'next' => array ( 0 => 'book.network.php', 1 => '网络', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/mqseries/functions/mqseries-strerror.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

mqseries_strerror

(PECL mqseries >= 0.10.0)

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

说明

mqseries_strerror(int $reason): string

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.

示例

示例 #1 mqseries_strerror() example

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

以上示例会输出:

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