在smarty中打印此变量

时间:2014-09-04 06:01:08

标签: smarty

我有一个数组$ customPre。我想打印数组元素“请指定哪个基金”。我这样做:

{$customPre.Please specify which fund}

但它不起作用。

1 个答案:

答案 0 :(得分:0)

在这种情况下,您需要使用类似PHP的语法,类似于PHP:{$variable['key']}

如果在PHP中你有:

$smarty->assign('customPre', array ('Please specify which fund' => 'This is value'));

在Smarty中你需要使用:

{$customPre['Please specify which fund']}

此输出将为:

  

这是价值

我相信你不能在这种情况下使用点语法({$customPre.Please specify which fund}),因为它可能会在键中查找空格。即使添加引号也无济于事。