search
HomeBackend DevelopmentPHP ProblemWhat does round mean in php

What does round mean in php

Mar 10, 2023 am 10:04 AM
phpround

In PHP, round means "rounding" and is a built-in function that converts floating point numbers into integers. This function can round floating point numbers and return an integer value of float type. Syntax "round(number,precision,mode);".

What does round mean in php

The operating environment of this tutorial: windows7 system, PHP8 version, DELL G3 computer

Introduction to php round() function

PHP has two data types for numbers: Integer integer type and Float floating point type. In some special circumstances, we can only use integer types, and for floating point types, we can only convert them to integer types. PHP provides the round() function , can help us accomplish this task.

In PHP, round means "rounding", and its function is to round floating point numbers and return an integer.

Grammar format:

round(number,precision,mode);
Parameters Description
number Required. Specifies the value to be rounded.
precision Optional. Specifies the number of digits after the decimal point. Default is 0, can also be negative.
mode Optional. Specifies a constant representing the rounding mode:
  • PHP_ROUND_HALF_UP - Default. Round up number to precision decimal places when encountering .5. Rounds 1.5 to 2 and -1.5 to -2.
  • PHP_ROUND_HALF_DOWN - Round down number to precision decimal places when encountering .5. Rounds 1.5 to 1 and -1.5 to -1.
  • PHP_ROUND_HALF_EVEN - When encountering .5, take the next even value and round number to precision decimal places.
  • PHP_ROUND_HALF_ODD - Rounds the next odd value when encountering .5 number to precision decimal places.

Return value: Returns an integer of type float

php round Examples of using the () function

1. Only one parameter:

<?php
header("Content-type:text/html;charset=utf-8");
echo round(6.1)."、";
echo round(6.2)."、";
echo round(6.3)."、";
echo round(6.4)."、";
echo round(6.5)."、";
echo round(6.6)."、";
echo round(6.64)."<br>";
?>

What does round mean in php

2. There are two parameters:

<?php
header("Content-type:text/html;charset=utf-8");
echo round(6.4545,3)."、";
echo round(6.4545,2)."、";
echo round(6.4545,1)."、";
echo round(6.4545,0)."<br>";
?>

What does round mean in php

3. Three parameters:

<?php
header("Content-type:text/html;charset=utf-8");
echo round(6.65,1,PHP_ROUND_HALF_DOWN)."<br>";//向下取整
echo round(6.65,1,PHP_ROUND_HALF_UP)."<br>";//向上取整
echo round(6.55,1,PHP_ROUND_HALF_EVEN)."<br>";//遇到 .5 的情况时取下一个偶数值舍入$val到 $precision小数位。
echo round(6.55,1,PHP_ROUND_HALF_ODD)."<br>";//遇到 .5 的情况时取下一个奇数值舍入$val到 $precision小数位。
?>

What does round mean in php

Extended knowledge: the other two rounding functions

  • ceil() function: round up to the nearest integer

  • floor() function: round down to the nearest integer

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of What does round mean in php. 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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools