aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/smarty/smarty/docs/designers/language-basic-syntax/language-math.md
blob: dc78a351279fd88a06bfa9d6831f160040305b3b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Math {#language.math}
====

Math can be applied directly to variable values.


    {$foo+1}

    {$foo*$bar}

    {* some more complicated examples *}

    {$foo->bar-$bar[1]*$baz->foo->bar()-3*7}

    {if ($foo+$bar.test%$baz*134232+10+$b+10)}

    {$foo|truncate:"`$fooTruncCount/$barTruncFactor-1`"}

    {assign var="foo" value="`$foo+$bar`"}

      

> **Note**
>
> Although Smarty can handle some very complex expressions and syntax,
> it is a good rule of thumb to keep the template syntax minimal and
> focused on presentation. If you find your template syntax getting too
> complex, it may be a good idea to move the bits that do not deal
> explicitly with presentation to PHP by way of plugins or modifiers.