···18181919How to Round
2020------------
2121-Rounding can be done with the <code>number_format()</code> function:
2121+Rounding can be done with the `number_format()` function:
2222 $number = 4.123;
2323 echo number_format($number, 2); // prints 4.12
2424