3

我从 SOAP 服务器获得响应,该服务器在每个响应中都有零个或多个不同类型的事务。

每个事务类型都是基本事务类型的扩展。

不同的交易类型有不同的处理方式。

PHP中是否有一种方法可以获取每个事务的事务类型作为响应(然后尝试计算每个复杂类型中元素的差异)?

每种类型都有很多类型和很多元素....

有没有可以得到这个的课程?

以下只是说明...

<transactions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ns2:type1">
  <id>24111</id><something>00000000</something><name>Blah</name>
</transactions>
<transactions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ns2:type8">
  <id>24111</id><somethingelse>011</somethingelse>
</transactions>
4

2 回答 2

2

我不太确定这个答案是否完全符合您的问题。以下代码片段通过其给定的命名空间而不是命名空间值本身的类型获取类型属性值。

使用 PHP 自己的文档对象模型完成。

<?php
$str = <<<XML
    <content>
        <transactions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ns2:type1">
            <id>24111</id>
            <something>00000000</something>
            <name>Blah</name>
        </transactions>
        <transactions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ns2:type8">
            <id>24111</id>
            <somethingelse>011</somethingelse>
        </transactions>
    </content>
XML;

$doc = new DomDocument();
$doc->loadXML($str);

$nodeList = $doc->getElementsByTagName('transactions');
foreach ($nodeList as $element) {
    $value = $element->getAttributeNS('http://www.w3.org/2001/XMLSchema-instance', 'type');
    echo $value . "\n";
}

这将输出两个给定类型“ns2:type1”和“ns2:type8”。

于 2013-10-05T20:01:17.747 回答
1

我可以用simple_html_dom.

是它的链接。

一个例子在这里:

<?php
include "simple_html_dom.php";
$html_nb = '
<transactions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ns2:type1"><id>24111</id><something>00000000</something><name>Blah</name>
</transactions>
<transactions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ns2:type8"><id>24111</id><somethingelse>011</somethingelse>
</transactions>';
function chtml($str){
    if(strpos("<html>", $str) !== false)
        return '<html><whole_code>'.$str.'</whole_code></html>';
    else
        return "<whole_code>".$str."</whole_code>";
}
function find_element_type($str){
    if(preg_match_all("/\<(.*?)\>/i", $str, $matches))
        return $matches[1][0];
    else
        return false;
}
function get_xsi_type($str){
    if(preg_match_all("/xsi\:type\=\"(.*?)\"/i", $str, $matches))
        return $matches[1][0];
    else
        return false;
}

$html = new simple_html_dom();
$html_2 = new simple_html_dom();
$html->load(chtml($html_nb));
$max_type = 10;

$element = $html->find('whole_code');
$e = $element[0]->innertext;
$html_2->load(chtml($e));
$k = 0;
while($html_2->find("whole_code",false)->children($k) != "")
{
   $all = $html_2->find("whole_code",false)->children($k);
   echo get_xsi_type($all) . "<br>";
   echo find_element_type($all) . " : " .$all."<br>";
   $k++;
}
echo "<hr>";

结果 :

ns2:type1
transactions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ns2:type1" : 2411100000000Blah 
ns2:type8
transactions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ns2:type8" : 24111011 
于 2013-10-02T11:44:50.057 回答