从xml中删除子节点

时间:2015-02-09 13:54:09

标签: php mysql xml

我从mysql数据生成xml代码。但它在每个节点之前重复生成项目节点。请给我解决方案,如何删除项目节点。我的代码是。非常感谢。

<?php
include("config.php");
header('Content-type: text/xml');
include 'XMLParser.class.php';
$qry = mysql_query("select * from store") or die(mysql_error());
$result = mysql_fetch_array($qry);
$xml = XMLParser::encode($result,'response');
echo $xml->asXML();
?>

并且输出是在每个节点之前重复的项目节点。请建议我如何删除此项目节点:

<response><item>3</item><id>3</id><item>Oxxo</item><name>Oxxo</name><item>avatar.png</item><image>avatar.png</image><item>ludhiyana</item><address>ludhiyana</address><item>9:00-17:00</item><open_close>9:00-17:00</open_close><item>dfsghxg</item><city>dfsghxg</city><item>465476</item><phone>465476</phone><item>0</item><drop_ins>0</drop_ins><item>500</item><cost>500</cost><item>0</item><include_mats>0</include_mats><item>400</item><mat_fee>400</mat_fee><item>28.6139391,77.20902120000005</item><lat_long>28.6139391,77.20902120000005</lat_long><item>2015-02-03
     

15:46:582015-02-03   15:46:5811

1 个答案:

答案 0 :(得分:0)

mysql_fetch_array接受第二个参数来指示您想要检索数据的方式(接受的值:MYSQL_ASSOC,MYSQL_NUM和MYSQL_BOTH)。默认情况下,它返回关联数组和数字索引(MYSQL_BOTH)。您可以使用:

$result = mysql_fetch_array($qry, MYSQL_ASSOC);