是否可以使用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"
答案 0 :(得分:1)
所有加载的配置变量都可通过
访问{$smarty.config}
在模板文件和
中$smarty->getConfigVars();
在php中
你可以迭代这些并在键名中搜索你需要的字符串