Код: Выделить всё
$number = 123.456789; // Example number
// Format the number to 2 decimal places
$formatted_number = number_format($number, 2, '.', '');
// Cast the formatted number to a float
$float_number = (float) $formatted_number;
echo $float_number;
Я не уверен, почему в Postman отображается как 123,456789.
Подробнее здесь: https://stackoverflow.com/questions/783 ... controller
Мобильная версия