Smarty 图标

您可根据 商标声明 使用 Smarty 徽标。

Smarty Template Engine Smarty Template Engine

如需赞助、广告、新闻或其他查询,请联系我们

使用 Smarty 的站点

广告

$config_overwrite

如设为 TRUE,那么从 配置文件 中读取的默认变量将覆盖彼此。否则,变量将推送到数组中。如果您想在配置文件中存储数组数据,这会很有帮助,只需要多次列出每个元素即可。

示例 13.2. 配置 #变量# 数组

这个示例使用 {cycle} 来输出带有交替红色/绿色/蓝色行颜色的表,其中 $config_overwrite = FALSE

配置文件。

# row colors
rowColors = #FF0000
rowColors = #00FF00
rowColors = #0000FF

    

{section} 循环的模板。

<table>
  {section name=r loop=$rows}
  <tr bgcolor="{cycle values=#rowColors#}">
    <td> ....etc.... </td>
  </tr>
  {/section}
</table>

    

另请参见 {config_load}getConfigVars()clearConfig()configLoad() 以及 配置文件部分