第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何在 PHP 中將 XML 轉(zhuǎn)換為數(shù)組

如何在 PHP 中將 XML 轉(zhuǎn)換為數(shù)組

PHP
DIEA 2023-06-18 16:17:37
我是 SOAP API 的新手,我得到了 Web 服務(wù)的響應(yīng)。但我無法將其轉(zhuǎn)換為數(shù)組以獲取密鑰。<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">   <soap:Body>      <ns2:setTransactionResponse xmlns:ns2="http://soap.api.controller.web.payjar.com/">         <return>            <merchantReference>mercRef_1395758213</merchantReference>            <payUReference>17613281409117</payUReference>            <successful>true</successful>         </return>      </ns2:setTransactionResponse>   </soap:Body></soap:Envelope>
查看完整描述

1 回答

?
慕桂英546537

TA貢獻(xiàn)1848條經(jīng)驗(yàn) 獲得超10個(gè)贊

嘗試以下對(duì)數(shù)組的 xml 響應(yīng)


 $xml = $response;

$xml = preg_replace("/(<\/?)(\w+):([^>]*>)/", "$1$2$3", $xml);

$xml = simplexml_load_string($xml);

$json = json_encode($xml);

$responseArray = json_decode($json,true);




echo "<pre>";print_r($responseArray);

輸出


Array

(

    [soapBody] => Array

        (

            [ns2setTransactionResponse] => Array

                (

                    [return] => Array

                        (

                            [merchantReference] => mercRef_1395758213

                            [payUReference] => 17613281409117

                            [successful] => true

                        )


                )


        )


)


查看完整回答
反對(duì) 回復(fù) 2023-06-18
  • 1 回答
  • 0 關(guān)注
  • 172 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)