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
안내
해당 글은 '도다 Aha!'에서 이전된 글입니다. 이전 글과 달라진 부분이 있을 수 있습니다.
태그
php
반응과 댓글 시스템은 Giscus에 의해 호스팅되며, 모든 대화는 GitHub에 저장됩니다.