smarty遍历配置文件

时间:2013-12-20 11:42:54

标签: php smarty

是否可以使用while / for循环迭代配置文件并在您不知道确切名称时获取键/值,但仅使用 smarty以“count”开头项目 for / while?

例如考虑以下配置文件的一部分?

countUnitedStates="United States"
countUruguay="Uruguay"
countUzbekistan="Uzbekistan"
countVanuatu="Vanuatu"
countVaticanCity="Vatican City"
countVenezuela="Venezuela"
countVietnam="Vietnam"
countYemen="Yemen"
countZambia="Zambia"
countZimbabwe="Zimbabwe"

1 个答案:

答案 0 :(得分:1)

所有加载的配置变量都可通过

访问
{$smarty.config}

在模板文件和

$smarty->getConfigVars();

在php中

你可以迭代这些并在键名中搜索你需要的字符串