xml并输出文本


xml and outputting text

我需要快速帮助来阅读我的xml。我在工具提示中显示我的结果,一切都准备好了。我想按id逐一查询每个批次。我需要一个php代码来为每个批次的id这是我的XML

<section id="8" number="8" name="Section 8" phase="4" date="2/11/2013">
<lot id="2198" lot="2" block="1" section="8">
<number>2</number>
<legal>L2-B1-S8 (60')</legal>
<address>12107 Arbor Blue Lane</address>
<builder>Perry Homes</builder>
<status>Sold</status>
<plan>3158</plan>
<brick>Acme-StoneBriar</brick>
<trim>SW-Portbello, Tea Chest</trim>
<final_inspection_date/>
<completion>5/23/2013</completion>
<sqft>3158</sqft>
<stories>2</stories>
<bed>4</bed>
<bath>3</bath>
<garage>3</garage>
<lotwidth>60'</lotwidth>
<specprice>Sold</specprice>
<imglocation>none</imglocation>
<premium>off</premium>
</lot>
<lot id="2218" lot="22" block="1" section="8">
<number>22</number>
<legal>L22-B1-S8 (60')</legal>
<address>19503 Bella Arbor Lane</address>
<builder>Perry Homes</builder>
<status>Sold</status>
<plan>3391</plan>
<brick>Hanson-Chestnut Hill</brick>
<trim>SW-Virtual Taupe, Smokehouse</trim>
<final_inspection_date>12/3/2012</final_inspection_date>
<completion>11/28/2012</completion>
<sqft>3391</sqft>
<stories>2</stories>
<bed>4</bed>
<bath>3</bath>
<garage>3</garage>
<lotwidth>60'</lotwidth>
<specprice>Sold</specprice>
<imglocation>3391w-e51.png</imglocation>
<premium>off</premium>
</lot>
</section>

这是我的测试php代码

    $xmldoc = new DOMDocument();
    $xmldoc->load('mydata.xml');
    $xpathvar = new Domxpath($xmldoc);
    $queryResult = $xpathvar->query('//lot[@id="2198"]/address'); 
    foreach($queryResult as $result){
            echo $result->textContent;
    }

这只是给了我地址。如何列出所有其他属性?我现在可以在工具提示中使用这个

    <div style="float:left">
<p style="
    margin: 0;
    padding-left: 10px;
    font-size: 13px;
"><label style="color:grey">Status: </label>'.$status.'</p>
<p style="
    margin: 0;
    padding-left: 10px;
    font-size: 13px;
"><label style="color:grey">Builder: </label>'.$builder.'</p>
<p style="
    margin: 0;
    padding-left: 10px;
    font-size: 13px;
    width:200px
"><label style="color:grey">Address: </label>'.$address.'</p>
<p style="
    margin: 0;
    padding-left: 10px;
    font-size: 13px;
"><label style="color:grey">Square Ft: </label>'.$square.'</p>
<p style="
    margin: 0;
    padding-left: 10px;
    font-size: 13px;
"><label style="color:grey">Stories: </label>'.$stories.'</p>
<p style="
    margin: 0;
    padding-left: 10px;
    font-size: 13px;
"><label style="color:grey">Completion: </label>'.$completion.'</p>

<p style="
    margin: 0;
    padding-left: 10px;
    font-size: 13px;
"><label style="color:grey">Plan #: </label>'.$plan.'</p>
<p style="
    margin: 0;
    padding-left: 10px;
    font-size: 13px;
"><label style="color:grey">B/B/G: </label>'.$bed.'/'.$bath.'/'.$garage.'</p>
<p style="
    margin: 0;
    padding-left: 10px;
    font-size: 13px;
"><label style="color:grey">Spec Price: </label>'.$specprice.'</p>

</div>
//lot[@id="2198"]/address

你问:"这只是给了我地址。我如何列出所有其他属性?"

在Xpath中,如果不想指定元素的具体名称,可以使用星号*

//lot[@id="2198"]/*

示例:ZON示例3:星号*选择位于前一路径的所有元素

但我对你的问题并不是特别清楚,所以这个答案有点像猜测。如果这对你没有帮助,不要责怪我;)