我有一个来自 Quickbase 的 XML,我正试图让 foreach 进入 smarty。xml 如下所示。是 的子级,并且有多个记录。在 Smarty 中,我有一个带有 xml 网址的 foreach 括号。我似乎无法出现。没有编译错误。任何帮助表示赞赏。
我的XML:
<qdbapi>
<action>API_DoQuery</action>
<errcode>0</errcode>
<errtext>No error</errtext>
<dbinfo>
<name>Part Details</name>
<desc/>
</dbinfo>
<variables></variables>
<chdbids></chdbids>
<record>
<related_bid>48</related_bid>
<part_note>This is a note 1</part_note>
<record_id_>24</record_id_>
<update_id>1417012758913</update_id>
</record>
<record>
<related_bid>48</related_bid>
<part_note>This is a note 2</part_note>
<record_id_>24</record_id_>
<update_id>1417012758913</update_id>
</record>
</qdbapi>
我的聪明人:
{$xml = simplexml_load_file('myquickbasexmlurl')}
{foreach $xml->qdbapi->record as $detail}
{$detail->record_id_} - {$detail->part_note}
{/foreach}
谢谢你