简体   繁体   English

以XML更改对象名称的对象

[英]Object to XML changing the names of the nodes

I have the object in php like this: 我在php中有这样的对象:

object(stdClass)[16]
  public 'L1' => 
    object(stdClass)[17]
      public 'int' => 
        array (size=2)
          0 => int 1
          1 => int 2
  public 'L2' => string '52' (length=2)
  public 'R' => string '2' (length=1)

Which i can convert to XML and i get: 我可以将其转换为XML并得到:

<data>
 <L1>
   <int>
     <node>1</node>
     <node>2</node>
   </int>
 </L1>
 <L2>52</L2>
 <R>2</R>
</data>

The problem is that i want to get rid of the names of the nodes and the node . 问题是我想摆脱节点和节点的名称。 In the final i want my XML to look like this: 最后,我希望我的XML看起来像这样:

<data>
 <param1>1</param1>
 <param2>2</param2>
 <param3>52</param3>
 <param4>2</param4>
</data>

Can anyone suggest the way i can do it ? 谁能建议我可以做到的方式?

Thank you in advance. 先感谢您。

Here is the class for creating the XML: 这是用于创建XML的类:

<?php

class XMLSerializer {

    // functions adopted from http://www.sean-barton.co.uk/2009/03/turning-an-array-or-object-into-xml-using-php/

    public static function generateValidXmlFromObj(stdClass $obj, $node_block='data', $node_name='node') {
        $arr = get_object_vars($obj);
        return self::generateValidXmlFromArray($arr, $node_block, $node_name);
    }

    public static function generateValidXmlFromArray($array, $node_block='data', $node_name='node') {
        $xml = '<?xml version="1.0" encoding="UTF-8" ?>';

        $xml .= '<' . $node_block . '>';
        $xml .= self::generateXmlFromArray($array, $node_name);
        $xml .= '</' . $node_block . '>';

        return $xml;
    }

    private static function generateXmlFromArray($array, $node_name) {
        $xml = '';

        if (is_array($array) || is_object($array)) {
            foreach ($array as $key=>$value) {
                if (is_numeric($key)) {
                    $key = $node_name;
                }

                $xml .= '<' . $key . '>' . self::generateXmlFromArray($value, $node_name) . '</' . $key . '>';
            }
        } else {
            $xml = htmlspecialchars($array, ENT_QUOTES);
        }

        return $xml;
    }

}

And the code: 和代码:

header ("Content-Type:text/xml");

include 'tamo.wss.php';
include 'xml_class.php';

$user = $_GET['id'];

$client = new SoapClient("Wsdl_Service", $options);

$client->__setSoapHeaders(Array(new WsseAuthHeader("login", "password")));

$param['ns1:l0'] = $user;
$encodded = new SoapVar($param, SOAP_ENC_OBJECT);

$result = $client->GetAttributes($encodded);

$xml = XMLSerializer::generateValidXmlFromObj($result->GetAttributesResult->Result->SingleAttribute);

echo $xml;

If I've understood your problem correctly, you can solve it this way. 如果我正确理解了您的问题,则可以通过这种方式解决。

$index = 1;

$xml = '<data>';

foreach(get_object_vars($result->GetAttributesResult->Result->SingleAttribute) as $value) {
   $xml .= '<param' . $index . '>' . $value . '</param' . $index++ . '>';
}

$xml .= '</data>';

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM