3v4l.org

run code in 300+ PHP versions simultaneously
<?php $price = '105,15'; $part = 0; var_dump(round(10.99, 2)); function decimalPart($price) { $price = (float)str_replace(',', '.', $price); return round($price - (int)$price, 2) * 100; } var_dump(decimalPart($price));

preferences:
72.96 ms | 402 KiB | 5 Q