在smarty(foreach)中打印数组中的子数组



我正在尝试使用smarty模板引擎打印数组中的子数组。假设我有一个这样的数组结构:

Array
    (
[0] => Array
    (
        [directory] => One Day As A Lion - 2011-03-01/
        [source_notes] => iRiver
        [recording_type] => Audience
        [type] => Audio
        [source_type] => MP3
        [fileList] => Array
            (
                [0] => 09 One Day As A Lion.mp3
                [1] => 01 Intro.mp3
                [2] => 05 Ocean View.mp3
                [3] => 04 Swashbuckler.mp3
                [4] => One Day As A Lion - 2011-03-01 - Prince Bandroom, Melbourne, Australia.jpg
                [5] => 10 Peart Plus.mp3
                [6] => 06 Rockers.mp3
                [7] => 03 Last Letter.mp3
                [8] => 07 Swampy.mp3
                [9] => 02 If You Fear Dying.mp3
                [10] => 08 Wild International.mp3
            )
    )
)

我该如何准确地获得包含文件名的数组以智能打印?目前,我在smarty中有一个foreach循环,看起来像:

  {foreach $sources as $sourceInfo}
  {strip}       
    Recording Type: {$sourceInfo.type} : {$sourceInfo.recording_type}<br>
    Source : {$sourceInfo.source_notes}<br>     
  {/strip}
  {/foreach}

我不知道如何实现第二个foreach循环。有人有什么建议吗?我对文档有点困惑,因为似乎有两种嵌套foreach循环的方法,其中一种似乎不推荐使用。前臂循环是最好的方法吗,还是smarty中有其他推荐的方法?如有任何反馈,我们将不胜感激。谢谢

只需添加另一个foreach:

{foreach from=$sources item=sourceInfo}
  {strip}       
    Recording Type: {$sourceInfo.type} : {$sourceInfo.recording_type}<br>
    Source : {$sourceInfo.source_notes}<br>     
    Files: {foreach from=$sourceInfo.fileList item=file}{$file}, {foreachelse}<i>no files</i>{/foreach}
  {/strip}
{/foreach}

相关内容

  • 没有找到相关文章

最新更新