Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 21573 программиста и 1017 роботов. Сейчас ищет 661 программист ...
Приступая к работе

mqseries_inq - MQSeries MQINQ

Вернуться к: mqseries Функции

mqseries_inq

(PECL mqseries >= 0.10.0)

mqseries_inqMQSeries MQINQ

Описание

void mqseries_inq ( resource $hconn , resource $hobj , int $selectorCount , array $selectors , int $intAttrCount , resource &$intAttr , int $charAttrLength , resource &$charAttr , resource &$compCode , resource &$reason )

The mqseries_inq() (MQINQ) call returns an array of integers and a set of character strings containing the attributes of an object.

Список параметров

hConn

Connection handle.

This handle represents the connection to the queue manager.

hObj

Object handle.

This handle represents the object to be used.

selectorCount

Count of selectors.

selectors

Array of attribute selectors.

intAttrLength

Count of integer attributes.

intAttr

Array of integer attributes.

charAttrLength

Length of character attributes buffer.

charAttr

Character attributes.

compCode

Completion code.

reason

Reason code qualifying the compCode.

Возвращаемые значения

Эта функция не возвращает значения после выполнения.

Примеры

Пример #1 mqseries_inq() example

<?php
    $int_attr 
= array();
    
$char_attr "";
    
    
mqseries_inq($conn$obj1, array(MQSERIES_MQCA_Q_MGR_NAME), 0$int_attr48$char_attr$comp_code$reason);
    
    if (
$comp_code !== MQSERIES_MQCC_OK) {
        
printf("INQ CompCode:%d Reason:%d Text:%s<br>\n"$comp_code$reasonmqseries_strerror($reason));
    } else {
        echo 
"INQ QManager name result ".$char_attr."<br>\n";
    }
?>

Смотрите также



Вернуться к: mqseries Функции

© 2024 «PHP.RU — Сообщество PHP-Программистов»
Главная | Форум | Реклама на сайте | Контакты VIP Сувениры
Разработка компании ODware