Twig fixed point arithmetic

227 Views Asked by At

I'm trying to do precise arithmetics calculations inside a Twig template, but I am struggling with floating point's precision error and I can't find a way to solve this.

Is there a way to solve this in my Twig file(like a bcmath extension) or my only way is to render my template directly with the result variable from PHP?

I leave a little example of what I am struggling with:

{% set x = 0.0089 %}
{% set y = 789 %}
{% set z = x * y %}
{{ z|number_format(32) }}

//7.02210000000000000852651282912120
//Result should be 7.0221
0

There are 0 best solutions below