具有数据库价值的Smarty计算

时间:2018-08-17 13:40:43

标签: php mysql math smarty

我正在尝试根据数据库值进行计算。基本上,我正在按照tpl文件中的代码显示一些数据

<table cellpadding="2" cellspacing="0"> 

{foreach from=$data item=item key=key} 

  <tr> 
      <td>{$item.Country}</td> <td>{$item.count}</td> <td>{$item.sum}</td> 
  <tr> 

 {/foreach} 

</table> 

现在我需要根据{$item.count}{$item.sum}进行计算,通过搜索,我发现以下smarty math calculation formula

{* $height=4, $width=5 *}
{math equation="x + y" x=$height y=$width}

但是无法分配我的数据库变量。我该怎么做

1 个答案:

答案 0 :(得分:1)

您可以在没有数学功能的情况下进行基本数学运算。

{assign var=x value=12}
{assign var=y value=4}
{assign var=sum value=$x+$y}
{assign var=difference value=$x-$y}
{assign var=product value=$x*$y}
{assign var=quotient value=$x/$y}
{assign var=modulo value=$x/$y}
{assign var=operations value=(($x/$y)*($x-$y)*9)-1}
<p>{$x} + {$y} = {$sum}</p>
<p>{$x} - {$y} = {$difference}</p>
<p>{$x} * {$y} = {$product}</p>
<p>{$x} / {$y} = {$quotient}</p>
<p>{$x} % {$y} = {$modulo}</p>
<p>(({$x}/{$y})*({$x}-{$y})*9)-1 = {$operations}</p>

Smarty results