0

对于我的生活,我无法弄清楚为什么我无法访问此肥皂包中的任何属性(甚至无法弄清楚它们是什么)。我不能使用水星返回给我的任何东西。我已经阅读了其他几个类似的问题,但没有运气。我相信这只是我无知的产物,但任何帮助都将不胜感激。

$transactionInfo = new MercuryPaymentHandler($paymentID);
$returnValue = $transactionInfo->verifyPayment();
$xml = new SimpleXMLElement($returnValue);
var_dump(get_object_vars($xml));

返回:

array(0) { }

但是这个:

$transactionInfo = new MercuryPaymentHandler($paymentID);
$returnValue = $transactionInfo->verifyPayment();
$xml = new SimpleXMLElement($returnValue);
echo $xml->asXML();

返回:

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
    <VerifyPaymentResponse xmlns="http://www.mercurypay.com/">
        <VerifyPaymentResult>
            <ResponseCode>0</ResponseCode>
            <Status>Approved</Status>
            <StatusMessage>AP</StatusMessage>
            <DisplayMessage>Your transaction has been approved.</DisplayMessage>               
            <AvsResult/>
            <CvvResult>M</CvvResult>
            <AuthCode>000027</AuthCode>
            <Token>ItIu8ayb9ZyMcBjHUkyHS0krnFVf6esnfs6tULuAo2giERIQACMQAgyc</Token>
            <RefNo>0028</RefNo>
            <Invoice>48</Invoice>
            <AcqRefData>KbMCC2110080622 </AcqRefData>
            <CardType>M/C</CardType><MaskedAccount>xxxxxxxx6781</MaskedAccount>
            <Amount>7</Amount>
            <TaxAmount>0</TaxAmount>
            <TransPostTime>2012-06-22T21:10:08.65</TransPostTime>
            <CardholderName>Test-User</CardholderName>
            <AVSAddress/>
            <AVSZip/>
            <TranType>Sale</TranType>
            <PaymentIDExpired>true</PaymentIDExpired>
            <CustomerCode/>
            <Memo>Mighty Wash 2.0</Memo>
            <AuthAmount>7</AuthAmount>
            <VoiceAuthCode/>
            <ProcessData>|00|600550672000</ProcessData>
            <OperatorID/>
            <TerminalName/>
        </VerifyPaymentResult>
        </VerifyPaymentResponse>
    </soap:Body>
</soap:Envelope>

是什么赋予了?

更新

我从来没有使用 PHPs 原生类来解决这个问题,但是使用 CakePHPs XML 类很容易。

4

2 回答 2

1
  1. 你不能转储 SimpleXMLElement
  2. SimpleXMLElement 背后的想法是您应该能够分层访问每个节点。所以基本上是RootNode->FirstChildNode->FirstChildNodeOfTheFirstChildNode->AndSoOn
  3. 默认情况下,如果将 SimpleXMLElement 与字符串或变量连接,则会调用 __toString() 方法。
于 2012-06-23T02:31:43.817 回答
1

问题是,在内部,SimpleXMLElement它没有被存储为一个微不足道的对象。基本上,您必须知道要访问哪些属性,并且它会根据其内部结构即时组成结果。在您的情况下,您可以使用以下内容: http: //php.net/manual/en/simplexmlelement.xpath.php(参见示例)来有效地提取数据。此外,要严格回答您的问题,您可以使用以下内容:http ://www.php.net/manual/en/simplexmlelement.attributes.php

于 2012-06-23T02:32:12.020 回答