Smarty 3数学计算

时间:2013-08-01 12:51:19

标签: php smarty smarty3

我似乎无法得到正确的语法:除数学计算。

{assign var="span" value="`12/$rows|@count`"}

文档 - http://www.smarty.net/docs/en/language.math.tpl

1 个答案:

答案 0 :(得分:2)

试试这个:

{assign var="count" value=$rows|@count}
{math assign="span" equation='x/y' x=12 y=$count} 

参考:http://www.smarty.net/forums/viewtopic.php?p=66730