Difference in usage of the entire function ceil, floor, round, and intval in php

Source: Internet
Author: User
Tags floor function
Difference in usage of the entire function ceil, floor, round, and intval in php

  1. Echo ceil (4.3); // 5
  2. Echo ceil (9.999); // 10
  3. ?>

2. the floor-rounding method returns the next integer not greater than the value of float floor (float $ value) and rounds the fractional part of the value. The return type of floor () is still float, because the float value range is usually larger than that of integer. Floor () example

  1. Echo floor (4.3); // 4
  2. Echo floor (9.999); // 9
  3. ?>

3. round-rounding a floating point number indicates float round (float $ val [, int $ precision]). return the value of val based on the specified precision (number of digits after decimal point) result of rounding. Precision can also be negative or zero (default ). Round () example

  1. Echo round (3.4); // 3
  2. Echo round (3.5); // 4
  3. Echo round (3.6); // 4
  4. Echo round (3.6, 0); // 4
  5. Echo round (1.95583, 2); // 1.96
  6. Echo round (1241757,-3); // 1242000
  7. Echo round (5.045, 2); // 5.05
  8. Echo round (5.055, 2); // 5.06
  9. ?>

Note: PHP cannot properly process strings similar to "12,300.2" by default. Note: the precision parameter is introduced in PHP 4.

4. intval-get the integer value of the variable. int intval (mixed $ var [, int $ base]) is converted by a specific hexadecimal conversion (decimal by default ), returns the integer value of the variable var. Var can be any scalar type. Intval () cannot be used for array or object. Intval () example

  1. Echo intval (4.3); // 4
  2. Echo intval (9.999); // 9
  3. ?>

Note: The base parameter of intval () does not work unless the var parameter is a string.

Conclusion: The floor function has the same function as the intval function. The difference is that a floating point number (float) is returned, and the other is an integer, because the float value range is usually larger than that of an integer. However, the values are equal.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.