PHP Programming How To Make Round Numbers from Float Numbers Rounding
RegisterLogin
PHP Programming How To Make Round Numbers from Float Numbers Rounding
Post Description: PHP Programming How To Make Round Numbers from Float Numbers Rounding
Tags: PHP, Programming, How, To, Make, Round, Numbers, from, Float, Numbers, Rounding
This Post Was Posted On Feb 29, 2008 By bigger_travis #1198
Post Description: PHP Programming How To Make Round Numbers from Float Numbers Rounding
Tags: PHP, Programming, How, To, Make, Round, Numbers, from, Float, Numbers, Rounding
This Post Was Posted On Feb 29, 2008 By bigger_travis #1198
PHP Programming How To Make Round Numbers from Float Numbers Rounding by bigger_travis
round Rounds a float number
[This post sponsered by www.webune.com]
if you are a php programmer, you will often need to round numbers from float numbers. What are float numbers? floats are numbers with a decimal point. for example: 2.49 is a float, where as 2 is the rounded number. Its often useful to use the round() function in php because it makes your code run smooter, specially in non-mathematical sites.
it is supported in PHP 3, PHP 4 and PHP 5
Description
float round ( float val [, int precision] )
Returns the rounded value of val to specified precision (number of digits after the decimal point). precision can also be negative or zero (default).
here are some exaples you can use to get an idea;
Code:
<?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
?>
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
?>
if you need more help on this, php.net is a great site to get information about php functions. i use it all the time
you can get more info on this function on:
http://www.php.net/manual/en/function.round.php
hope this helps.
Leave Your Comments
Related Pages: [Add Your Website]
Post New Topic
©2012 Webune Forums - Sat Dec 22, 2012 10:44 am
Powered by: Webune Forums V3
Powered by: Webune Forums V3