Smarty / PHP:foreach循环有三个数组

时间:2016-02-26 09:37:32

标签: php arrays smarty

正在为我的网站制作多语言的网站地图。

我当前的站点地图代码如下所示

{foreach from=$data.listings_en item=i}
<url>
<loc>{$i}</loc>
</url>
{/foreach}

它只适用于英语网址现在还可以尝试添加其他一些语言,但我不能,因为我不知道如何将三个数组传递到foreach循环上面

我有三个阵列

$data.listings_en
$data.listings_cn
$data.listings_ru
$ data.listings_en

中的

$listings_en[] = 'my link 1';

$data['listings_en']    = $listings_en;

我想要的东西

    {foreach from=$data.listings_en item=i}   // loop over three arrays all arrays have same size
    <url> 
    <loc>{$i}</loc>   // print url of listening_en 
 <loc>{$i}</loc>    // print url of listening_cn 
 <loc>{$i}</loc>  // print url of listening_ru 
    </url>
    {/foreach}

1 个答案:

答案 0 :(得分:1)

{foreach from=$data item=i} <li>{$i}</li>{/foreach}