我有以下通过 simplexml 访问的 xml:
<sequences>
<sequence>
<ImageUrl id="">
http://www.image.com/image.jpg
</ImageUrl>
<photographer>name</photographer>
</sequence>
<sequence>
<ImageUrl id="">
http://www.image.com/image1.jpg
</ImageUrl>
<photographer>name 1</photographer>
</sequence>
</sequences>
我需要将此数据传递给 smarty 并在模板中输出。我需要能够输出第一个序列图像和摄影师姓名,然后是第二个。我怎样才能做到这一点?我可以看到您可以将一个数组传递给 smarty,然后在模板中对其进行循环,但我基本上需要传递一个多维数组,每个序列节点有 1 个数组。