标签: foreach smarty
这是我在smarty文件中的数组中的变量 {$ CountKey}
此输出为" 数组"。
我想在smarty文件中获取所有价值。
答案 0 :(得分:0)
您需要使用foreach循环从数组中获取值。
foreach
{foreach $CountKey as $row} <p>{$row.name}</p> {/foreach}
这是非常基础的知识。请刷新你对PHP和Smarty的了解。
Smarty Foreach Documentation