是否可以在smarty模板之外使用智能功能?

时间:2009-08-17 08:53:44

标签: php smarty

如果你在php文件中有:

$smarty->assign('content','<p>This is some test content</p>');

并在模板文件中我有b(仅作为示例):

<html>
<head></head>
<body>{$content}{config_load file='settings.conf'}{#setting1#}</body>
</html>

是否可以从配置文件加载php文件而不是模板文件中的设置?

1 个答案:

答案 0 :(得分:1)

您可以使用config_load()加载配置文件,然后使用get_config_Vars()获取加载的值。