abs

The abs filter returns the absolute value.

abs フィルターは絶対値を返します。
1
2
3
4
5
{# number = -5 #}

{{ number|abs }}

{# outputs 5 #}

Note

ノート

Internally, Twig uses the PHP abs function.

内部的に、Twig は PHP abs 関数を使用します。