Unix and Linux Discussions Tagged with echo |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
2 |
71,357 |
Shell Programming and Scripting |
|
|
|
2 |
69,159 |
Shell Programming and Scripting |
|
|
|
2 |
7,487 |
Shell Programming and Scripting |
|
|
|
2 |
7,824 |
Shell Programming and Scripting |
|
|
|
6 |
7,929 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
16,876 |
Shell Programming and Scripting |
|
|
|
1 |
3,480 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
3,517 |
UNIX for Beginners Questions & Answers |
|
|
|
10 |
118,580 |
Shell Programming and Scripting |
|
|
|
3 |
5,541 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
6,839 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
4,311 |
What is on Your Mind? |
|
|
|
4 |
4,185 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
5,630 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
2,477 |
Shell Programming and Scripting |
|
|
|
4 |
2,321 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
8,749 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
27,274 |
Shell Programming and Scripting |
|
|
|
5 |
3,061 |
UNIX for Beginners Questions & Answers |
|
|
|
23 |
7,400 |
Shell Programming and Scripting |
|
|
|
4 |
3,537 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
3,035 |
Shell Programming and Scripting |
|
|
|
3 |
9,957 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
1,902 |
Shell Programming and Scripting |
|
|
|
3 |
11,369 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
2,937 |
Shell Programming and Scripting |
|
|
|
3 |
2,621 |
Shell Programming and Scripting |
|
|
|
3 |
3,989 |
Linux |
|
|
|
2 |
21,480 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
8,520 |
UNIX for Dummies Questions & Answers |
|
|
|
6 |
2,272 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
2,144 |
Shell Programming and Scripting |
|
|
|
3 |
2,557 |
Shell Programming and Scripting |
|
|
|
12 |
15,159 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
12,133 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
5,292 |
Shell Programming and Scripting |
|
|
|
5 |
17,628 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
2,169 |
Shell Programming and Scripting |
|
|
|
2 |
2,207 |
UNIX for Dummies Questions & Answers |
|
|
|
7 |
5,339 |
Shell Programming and Scripting |
ROUND(3) 1 ROUND(3)
round - Rounds a float
SYNOPSIS
float round (float $val, [int $precision], [int $mode = PHP_ROUND_HALF_UP])
DESCRIPTION
Returns the rounded value of $val to specified $precision (number of digits after the decimal point). $precision can also be negative or
zero (default).
Note
PHP doesn't handle strings like "12,300.2" correctly by default. See converting from strings.
PARAMETERS
o $val
- The value to round
o $precision
- The optional number of decimal digits to round to.
o $mode
- Use one of the following constants to specify the mode in which rounding occurs.
+--------------------+---------------------------------------------------+
| Constant | |
| | |
| | Description |
| | |
+--------------------+---------------------------------------------------+
| | |
| PHP_ROUND_HALF_UP | |
| | |
| | Round $val up to $precision decimal places away |
| | from zero, when it is half way there. Making 1.5 |
| | into 2 and -1.5 into -2. |
| | |
| | |
|PHP_ROUND_HALF_DOWN | |
| | |
| | Round $val down to $precision decimal places |
| | towards zero, when it is half way there. Making |
| | 1.5 into 1 and -1.5 into -1. |
| | |
| | |
|PHP_ROUND_HALF_EVEN | |
| | |
| | Round $val to $precision decimal places towards |
| | the next even value. |
| | |
| | |
|PHP_ROUND_HALF_ODD | |
| | |
| | Round $val to $precision decimal places towards |
| | the next odd value. |
| | |
+--------------------+---------------------------------------------------+
RETURN VALUES
The rounded value
EXAMPLES
Example #1
round(3) examples
<?php
echo round(3.4); // 3
echo round(3.5); // 4
echo round(3.6); // 4
echo round(3.6, 0); // 4
echo round(1.95583, 2); // 1.96
echo round(1241757, -3); // 1242000
echo round(5.045, 2); // 5.05
echo round(5.055, 2); // 5.06
?>
Example #2
$mode examples
<?php
echo round(9.5, 0, PHP_ROUND_HALF_UP); // 10
echo round(9.5, 0, PHP_ROUND_HALF_DOWN); // 9
echo round(9.5, 0, PHP_ROUND_HALF_EVEN); // 10
echo round(9.5, 0, PHP_ROUND_HALF_ODD); // 9
echo round(8.5, 0, PHP_ROUND_HALF_UP); // 9
echo round(8.5, 0, PHP_ROUND_HALF_DOWN); // 8
echo round(8.5, 0, PHP_ROUND_HALF_EVEN); // 8
echo round(8.5, 0, PHP_ROUND_HALF_ODD); // 9
?>
Example #3
$mode with precision examples
<?php
/* Using PHP_ROUND_HALF_UP with 1 decimal digit precision */
echo round( 1.55, 1, PHP_ROUND_HALF_UP); // 1.6
echo round( 1.54, 1, PHP_ROUND_HALF_UP); // 1.5
echo round(-1.55, 1, PHP_ROUND_HALF_UP); // -1.6
echo round(-1.54, 1, PHP_ROUND_HALF_UP); // -1.5
/* Using PHP_ROUND_HALF_DOWN with 1 decimal digit precision */
echo round( 1.55, 1, PHP_ROUND_HALF_DOWN); // 1.5
echo round( 1.54, 1, PHP_ROUND_HALF_DOWN); // 1.5
echo round(-1.55, 1, PHP_ROUND_HALF_DOWN); // -1.5
echo round(-1.54, 1, PHP_ROUND_HALF_DOWN); // -1.5
/* Using PHP_ROUND_HALF_EVEN with 1 decimal digit precision */
echo round( 1.55, 1, PHP_ROUND_HALF_EVEN); // 1.6
echo round( 1.54, 1, PHP_ROUND_HALF_EVEN); // 1.5
echo round(-1.55, 1, PHP_ROUND_HALF_EVEN); // -1.6
echo round(-1.54, 1, PHP_ROUND_HALF_EVEN); // -1.5
/* Using PHP_ROUND_HALF_ODD with 1 decimal digit precision */
echo round( 1.55, 1, PHP_ROUND_HALF_ODD); // 1.5
echo round( 1.54, 1, PHP_ROUND_HALF_ODD); // 1.5
echo round(-1.55, 1, PHP_ROUND_HALF_ODD); // -1.5
echo round(-1.54, 1, PHP_ROUND_HALF_ODD); // -1.5
?>
CHANGELOG
+--------+---------------------------------------------------+
|Version | |
| | |
| | Description |
| | |
+--------+---------------------------------------------------+
| 5.3.0 | |
| | |
| | The $mode parameter was introduced. |
| | |
| 5.2.7 | |
| | |
| | The inner workings of round(3) was changed to |
| | conform to the C99 standard. |
| | |
+--------+---------------------------------------------------+
SEE ALSO
ceil(3), floor(3), number_format(3).
PHP Documentation Group ROUND(3)