gpt4 book ai didi

php - 通过配置文件在 smarty 中定义数组

转载 作者:行者123 更新时间:2023-12-04 14:34:31 26 4
gpt4 key购买 nike

是否可以在 smarty 的配置文件中定义数组?例如,我希望在配置文件(位于/configs)中有一个小数据库——很少(大约 20 个)产品描述:标题、价格、描述。之后我想通过 foreach 或部分列出它。在没有 MySql 或其他数据库引擎的情况下,如何在 Smarty 中定义该数组。我可以这样做吗?

最佳答案

你可以在配置文件中定义数组,你需要设置$config_overwrite = FALSE。你可以看看这个页面:config_overwrite

$smarty = new Smarty;
$smarty->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>

关于php - 通过配置文件在 smarty 中定义数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1693096/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com