Smarty变量问题

时间:2010-11-02 15:31:33

标签: php smarty

嘿,我在smarty中指定了变量的问题。 我想为其他模板分配一些值,但它无法正常工作。有问题的一行在这里:

{{include file="lib/topmenu_item.tpl" onclick="load_from_php('pageBody', '{{$base_url}}index.php/datasources/grouping', 'grouping', this);" node="datasources/grouping" text="Grouping"}}

我想将$ base_url的值添加到网址的前面。我怎么能这样做?

Ps:{{和}}是我的分隔符

1 个答案:

答案 0 :(得分:1)

这样的事情:

{{include file="lib/topmenu_item.tpl" onclick="load_from_php('pageBody', '{{' . $base_url. '}}index.php/datasources/grouping', 'grouping', this);" node="datasources/grouping" text="Grouping"}}

使用字符串连接来使用字符串中的变量。