我需要将以下 XML 转换/解析为关联数组。我尝试使用 PHP 的 simplexml_load_string 函数,但它没有将属性检索为关键元素。
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<OPS_envelope>
<header>
<version>0.9</version>
</header>
<body>
<data_block>
<dt_assoc>
<item key="protocol">XCP</item>
<item key="object">DOMAIN</item>
<item key="response_text">Command Successful</item>
<item key="action">REPLY</item>
<item key="attributes">
<dt_assoc>
<item key="price">10.00</item>
</dt_assoc>
</item>
<item key="response_code">200</item>
<item key="is_success">1</item>
</dt_assoc>
</data_block>
</body>
</OPS_envelope>
我需要像这样的上述 XML 数据,键 => 值对。
array('protocol' => 'XCP',
'object' => 'DOMAIN',
'response_text' => 'Command Successful',
'action' => 'REPLY',
'attributes' => array(
'price' => '10.00'
),
'response_code' => '200',
'is_success' => 1
)