i aşağıdaki gibi bir xml tepki var -
<NewDataSet> <Account> <CustCode>UZ6CMAIN</CustCode> <GUID>f5b0866b-2f67-48c5-993b-c67895bb0489</GUID> <Features>0</Features> <BaseCCY>USD</BaseCCY> <LastOrderSEQ>160928459</LastOrderSEQ> <LastDealSEQ>160928461</LastDealSEQ> <OrderLotSize>100000</OrderLotSize> <MaxOrderPips>1000</MaxOrderPips> <CancelOrderPips>1</CancelOrderPips> <TradeLotSize>100000</TradeLotSize> <MaxTradeLots>25</MaxTradeLots> <TierCount>1</TierCount> <Tier1MinLots>1</Tier1MinLots> <Tier1MaxLots>50</Tier1MaxLots> <Tier1PipDifference>0</Tier1PipDifference> <Tier2MinLots>0</Tier2MinLots> <Tier2MaxLots>0</Tier2MaxLots> <Tier2PipDifference>0</Tier2PipDifference> <Tier3MinLots>0</Tier3MinLots> <Tier3MaxLots>0</Tier3MaxLots> <Tier3PipDifference>0</Tier3PipDifference> </Account> </NewDataSet>
Aşağıdaki kodu kullanarak -
$xml = simplexml_load_string($result);
print_r($xml);
verir -
SimpleXMLElement Object ( [0] => UZ6CMAIN 02267a97-4428-401d-81e1-d0010d559470 0 USD 160928459 160928461 100000 1000 1 100000 25 1 1 50 0 0 0 0 0 0 0 )
Şimdi nasıl i vb GUID etiketi ve BaseCCY etiketleri içindeki değer gibi bireysel elemanlarına erişim yok. Yardım için teşekkürler.