PHP 반올림 함수
https://www.php.net/manual/en/function.round.php
round(int|float $num, int $precision = 0, int $mode = PHP_ROUND_HALF_UP): float
example
소숫점 없는 반올림:
round(10.51) // 11
소숫점 1자리 반올림:
round(10.51, 1)// 10.5
php interactive shell example
쉘 시작
php -a
echo
출력
php > echo round(10.51, 1);10.5