git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@294402 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Richard Quadling 2010-02-03 14:09:59 +00:00
parent a0d0a60b05
commit d3188226ed
5 changed files with 5 additions and 5 deletions

View file

@ -80,7 +80,7 @@
</title>
<programlisting role="php">
<![CDATA[
<?php
<?php
mqseries_back($conn, $comp_code, $reason);
if ($comp_code !== MQSERIES_MQCC_OK) {

View file

@ -82,7 +82,7 @@
<![CDATA[
<?php
$mqbo = array();
mqseries_begin( $conn,
mqseries_begin( $conn,
$mqbo,
$comp_code,
$reason);

View file

@ -83,7 +83,7 @@
<![CDATA[
<?php
mqseries_conn('WMQ1', $conn, $comp_code, $reason);
if ($comp_code !== MQSERIES_MQCC_OK) {
if ($comp_code !== MQSERIES_MQCC_OK) {
printf("conn CompCode:%d Reason:%d Text:%s<br>\n", $comp_code, $reason, mqseries_strerror($reason));
exit;
}

View file

@ -102,7 +102,7 @@
);
mqseries_connx('MQNX9420', $mqcno, $conn, $comp_code,$reason);
if ($comp_code !== MQSERIES_MQCC_OK) {
if ($comp_code !== MQSERIES_MQCC_OK) {
printf("Connx CompCode:%d Reason:%d Text:%s<br>\n", $comp_code, $reason, mqseries_strerror($reason));
exit;
}

View file

@ -123,7 +123,7 @@
// $obj now holds the reference to the object (TESTQ)
// setup the message descriptor array. Check MQSeries reference manuals.
$md = array(
$md = array(
'Version' => MQSERIES_MQMD_VERSION_1,
'Expiry' => MQSERIES_MQEI_UNLIMITED,
'Report' => MQSERIES_MQRO_NONE,