What is round() in PHP?
The round() function rounds off a number to a specified number of decimal places.
Figure 1 below shows a visual representation of the round() function.
Syntax
round(num, ndigits, mode);
Parameters
This function requires three parameters.
-
It requires a
numberthat is to be rounded off. -
The
ndigitsparameter is the number of decimal places to which the above number needs to be rounded off. This is an optional parameter. Its default value is0. Ifndigitsis omitted, thenround()returns the nearest integer value of a number. -
The
modeparameter is used to decide the number of decimal places to round off. It is an optional parameter and its default value isPHP_ROUND_HALF_UP. Following are the available modes:PHP_ROUND_HALF_UP: This mode rounds up the number tondigitsaway from zero, when it is halfway there.PHP_ROUND_HALF_DOWN: This mode rounds down the number tondigits, when it is halfway there.PHP_ROUND_HALF_EVEN: This mode rounds the number tondigits, to the nearest even value.PHP_ROUND_HALF_ODD: This mode rounds the number tondigits, to the nearest odd value.
Return value
The round() function returns the number rounded off to the specified number of decimal places.
If you input a negative value (-n) in the ndigits, then n digits to the left of the decimal will be rounded off.
<?php#round without ndigits and modeecho("round(9.8923): ");echo (round(9.8923));echo("\n");echo("round(-9.8923): ");echo (round(-9.8923));?><?php#round with ndigits but without modeecho("round(9.8923,2): ");echo (round(9.8923,2));echo("\n");echo("round(-9.8923,2): ");echo (round(-9.8923,2));echo("\n");echo("round(923.8923,-2): ");echo (round(923.8923,-2));echo("\n");echo("round(-923.8923,-2): ");echo (round(-923.8923,-2));echo("\n");?><?php#round with ndigits and mode:PHP_ROUND_HALF_UPecho("round(9.5,0,PHP_ROUND_HALF_UP): ");echo (round(9.5,0,PHP_ROUND_HALF_UP));echo("\n");echo("round(-9.5,0,PHP_ROUND_HALF_UP): ");echo (round(-9.5,0,PHP_ROUND_HALF_UP));echo("\n");?><?php#round with ndigits and mode:PHP_ROUND_HALF_DOWNecho("round(9.5,0,PHP_ROUND_HALF_DOWN): ");echo (round(9.5,0,PHP_ROUND_HALF_DOWN));echo("\n");echo("round(-9.5,0,PHP_ROUND_HALF_DOWN): ");echo (round(-9.5,0,PHP_ROUND_HALF_DOWN));echo("\n");?><?php#round with ndigits and mode:PHP_ROUND_HALF_EVENecho("round(9.5,0,PHP_ROUND_HALF_EVEN): ");echo (round(9.5,0,PHP_ROUND_HALF_EVEN));echo("\n");echo("round(-9.5,0,PHP_ROUND_HALF_EVEN): ");echo (round(-9.5,0,PHP_ROUND_HALF_EVEN));echo("\n");?><?php#round with ndigits and mode:PHP_ROUND_HALF_ODDecho("round(9.5,0,PHP_ROUND_HALF_ODD): ");echo (round(9.5,0,PHP_ROUND_HALF_ODD));echo("\n");echo("round(-9.5,0,PHP_ROUND_HALF_ODD): ");echo (round(-9.5,0,PHP_ROUND_HALF_ODD));echo("\n");?>