0

我正在创建连接到 Web 服务的 php 页面,并将显示来自 Web 服务的结果,Web 服务响应的 xml 如下所示:

<GetUserResponse xmlns="http://the web service">
  <GetUserResult>
    <xsd:schema>schema</xsd:schema>xml
  </GetUserResult>
</GetUserResponse>

我需要知道我从服务中得到的 xml 内容,以及如何处理或显示在我的页面中?


解决了

我能够使用以下方法解决它:

$xml =simplexml_load_string($result);

4

1 回答 1

0
XML File : myxml.xml
<?xml version="1.0" encoding="ISO-8859-1"?>
<note>
    <to>Gauttam</to>
    <from>Kevadia</from>
    <heading>My Heading</heading>
    <body>Body Content Here!!!!</body>
</note> 

TO read in PHP return with Object :

<?php
    $xml=simplexml_load_file("myxml.xml");
    echo $xml->to . "<br>";
    echo $xml->from . "<br>";
    echo $xml->heading . "<br>";
    echo $xml->body;
    // IF XML file having multiple value retrieve it dynamic with array 
?>
于 2013-06-26T12:34:00.067 回答