dqy13020940 2016-06-10 12:36
浏览 109
已采纳

使用simplexml_load_string的XML到数组

I need to convert XML to array,but its not converting

here is my code

<?php
$response='<?xml version="1.0" encoding="utf-8"?>
 <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">

<soap:Body>
<Search xmlns="http:url">
  <Request>
    <aaa>string</aaa>
    <bbb>string</bbb>
    <ccc>srting</ccc>
    <SourceName>string</SourceName>

  </Request>
</Search>
</soap:Body>
</soap:Envelope>';


function xml2Array($xmlstring)
{
    $xml = simplexml_load_string($xmlstring, "SimpleXMLElement", LIBXML_NOCDATA);
    $json = json_encode($xml);
    return json_decode($json,TRUE);
}
$arr = xml2Array($response);
print_r($arr); 

But if i remove

<soap:Body> 

from the XML it works fine, What is the issue how to resole it

  • 写回答

1条回答 默认 最新

  • dsg435665475 2016-06-10 12:57
    关注

    Try something similar to solution from this question.

    In your case try this code

    <?php
    $response='<?xml version="1.0" encoding="utf-8"?>
     <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    
    <soap:Body>
    <Search xmlns="http:url">
      <Request>
        <aaa>string</aaa>
        <bbb>string</bbb>
        <ccc>srting</ccc>
        <SourceName>string</SourceName>
    
      </Request>
    </Search>
    </soap:Body>
    </soap:Envelope>';
    
    
    function xml2Array($xmlstring)
    {
        $xml = simplexml_load_string($xmlstring, "SimpleXMLElement", LIBXML_NOCDATA, "http://schemas.xmlsoap.org/soap/envelope/");
        $xml->registerXPathNamespace('soap-env', 'http://schemas.xmlsoap.org/soap/envelope/');
        $bodies = $xml->xpath('//soap-env:Body');
        if (is_array($bodies) && !empty($bodies[0])) {
            $json = json_encode($bodies[0]);
            return json_decode($json,TRUE);
        } else {
            return false;
        }
    }
    $arr = xml2Array($response);
    print_r($arr);
    

    And output will be:

    Array
    (
        [Search] => Array
            (
                [Request] => Array
                    (
                        [aaa] => string
                        [bbb] => string
                        [ccc] => srting
                        [SourceName] => string
                    )
    
            )
    
    )
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 C++ 头文件/宏冲突问题解决
  • ¥15 用comsol模拟大气湍流通过底部加热(温度不同)的腔体
  • ¥50 安卓adb backup备份子用户应用数据失败
  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛
  • ¥15 请问Lammps做复合材料拉伸模拟,应力应变曲线问题
  • ¥30 python代码,帮调试
  • ¥15 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python
  • ¥15 要给毕业设计添加扫码登录的功能!!有偿