Php integer acquisition method and instance summary

Source: Internet
Author: User
Php integer acquisition method and instance summary

  1. $ A = 20;
  2. $ B = 6;
  3. Echo ($ a/$ B )."
    "; // Out 3.3333333333333
  4. Echo ceil ($ a/$ B )."
    "; // Out 4
  5. Echo floor ($ a/$ B )."
    "; // Out 3
  6. Echo round ($ a/$ B )."
    "; // Out 3
  7. // By bbs.it-home.org
  8. ?>

In addition, we will introduce four common methods for php to take integers.

It mainly uses four functions: ceil, floor, round, and intval.

1. the ceil-first method returns an integer not less than the value if float ceil (float value) is an integer. The type returned by ceil () is still float, because the float value range is usually larger than integer. Example:

  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. 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]) returns the result of rounding val according to the specified precision (number of digits after decimal point. Precision can also be negative or zero (default ). 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. ?>

4. intval-an example of converting a variable to an integer type:

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

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.