Twig
The flexible, fast, and securetemplate engine for PHP
abs
Found a typo or an error? Want to improve this document? Edit it.
Need support or have a technical question? Ask support on Stack Overflow.
The abs filter returns the absolute value.
1 2 3 4 5
{# number = -5 #} {{ number|abs }} {# outputs 5 #}
Note
Internally, Twig uses the PHP abs function.