<?php $amounts = [ 1298, 1298.3, 1298.34, 1298.341, 1298.349279745, ]; foreach ($amounts as $amount) { preg_match('/\d+\.{0,1}\d{0,2}/', (string) $amount, $matches); var_dump($matches[0]); }
You have javascript disabled. You will not be able to edit any code.