<?php function format_pln(float $price): string { $rounded = round($price, 2, PHP_ROUND_HALF_UP); return number_format($rounded, 2, ',', ' ') . ' zł'; } // example: echo format_pln(9104.6640); // 9 104,66 zł echo format_pln(2094.0727); // 2 094,07 zł echo format_pln(11198.7367); // 11 198,74 zł
You have javascript disabled. You will not be able to edit any code.