我有一个函数可以将以下内容打印到这样的数组中:
Array ( [0] => Array ( [id] => 1 [name] => name
但是我无法foreach
通过这个,我不确定为什么?
<ul>
{foreach from=$array item=item}
<li>{$item.name}</li>
{/foreach}
</ul>
更新:
{foreach item=topitem from=$getlocations}
{foreach item=item from=$topitem}
<option value="{$item.locationid}">{$item.name}</option>
{/foreach}
{/foreach}
功能:
function getlocations()
{
global $smarty;
$query = placeholderstackoverflow;
return $query;
$smarty->assign('getlocations', $getlocations);
}