Home  >  Article  >  Backend Development  >  How to use php round function?

How to use php round function?

藏色散人
藏色散人Original
2019-05-29 15:11:152725browse

php The round function is used to round floating-point numbers. Its syntax is round(x,prec). The parameter x is optional and specifies the number to be rounded; prec is optional and specifies the number of digits after the decimal point.

How to use php round function?

#How to use php round function?

Definition and usage

round() function rounds floating point numbers.

Syntax

round(x,prec)

Parameters

x Optional. Specifies the number to be rounded.

prec Optional. Specifies the number of digits after the decimal point.

Description

Returns the result of rounding x according to the specified precision prec (the number of decimal digits after the decimal point). prec can also be negative or zero (default).

Tips and Notes

Note: PHP cannot handle strings like "12,300.2" correctly by default.

Note: The prec parameter was introduced in PHP 4. .

Example

Output:

1
1
0
-4
-5

The above is the detailed content of How to use php round function?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn