聪明的数学问题!

时间:2009-07-02 16:13:24

标签: smarty

我正在尝试在我的模板文件中加上并乘以三个值,但聪明的是在弄乱我

{assign var="x" value="`$smarty.get.pageID * $perPage`"}
{$x + $smarty.section.co.index_next}

我该怎么做?!

1 个答案:

答案 0 :(得分:1)

抱歉这是一个愚蠢的问题,我这样解决了:

{if $smarty.get.pageID ne 1 } 
                {assign var="x" value=$smarty.get.pageID}

                {math equation="(( x * y ) + z )" x=$x y=$perPage z=$smarty.section.co.index_next}

            {else}

                {$smarty.section.co.index_next}

            {/if}