3v4l.org

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

preferences:
39.53 ms | 402 KiB | 5 Q