<?php $price = 0.1 + 0.7; // 0.80 expected print_r(0.1 * (int)(10 * $price + 0.45)); // 0.8 echo "\n"; $price = 10.555; // 0.80 expected print_r(0.1 * (int)(10 * $price + 0.45)); // 0.8 echo "\n";
You have javascript disabled. You will not be able to edit any code.