search
HomeBackend DevelopmentPHP TutorialExplore the rules for using PHP floating point type rounding_PHP Tutorial
Explore the rules for using PHP floating point type rounding_PHP TutorialJul 15, 2016 pm 01:32 PM
phpuseRoundingexistactualusExplorefloating pointoftypecodingruleneed

We often use rounding requirements in actual coding. Today we will introduce some details to you

PHP floating point type rounding Integer ceil -- rounding to the nearest integer
Explanation
float ceil ( float value )
Returns the next integer that is not less than value. If value has a decimal part, it will be rounded up. The type returned by ceil() is still float because the range of float values ​​is usually larger than that of integer.

Example 1. ceil() Example

<ol class="dp-xml">
<li class="alt"><span><span class="tag"><span> ?php   </span></span></span></li>
<li><span>echo ceil(4.3); // 5   </span></li>
<li class="alt"><span>echo ceil(9.999); // 10   </span></li>
<li>
<span class="tag">?></span><span>   </span>
</li>
<li class="alt"><span> </span></li>
</ol>


PHP floating point type rounding floor -- Rounding by rounding method
Explanation
float floor (float value)
Returns the next integer that is not greater than value, and rounds the decimal part of value. The type returned by floor() is still float because the range of float values ​​is usually larger than that of integer.

Example 1. floor() Example

<ol class="dp-xml">
<li class="alt"><span><span class="tag"><span> ?php   </span></span></span></li>
<li><span>echo floor(4.3); // 4   </span></li>
<li class="alt"><span>echo floor(9.999); // 9   </span></li>
<li>
<span class="tag">?></span><span>   </span>
</li>
<li class="alt"><span> </span></li>
</ol>

PHP floating point type round -- for floating point numbers Rounding
Description
float round (float val [, int precision])
Returns the result of rounding val according to the specified precision (the number of decimal digits after the decimal point). precision can also be negative or zero (default).

Example 1. round() example

<ol class="dp-xml">
<li class="alt"><span><span class="tag"><span> ?php   </span></span></span></li>
<li><span>echo round(3.4); // 3   </span></li>
<li class="alt"><span>echo round(3.5); // 4   </span></li>
<li><span>echo round(3.6); // 4   </span></li>
<li class="alt"><span>echo round(3.6, 0); // 4   </span></li>
<li><span>echo round(1.95583, 2); // 1.96   </span></li>
<li class="alt"><span>echo round(1241757, -3); // 1242000   </span></li>
<li><span>echo round(5.045, 2); // 5.05   </span></li>
<li class="alt"><span>echo round(5.055, 2); // 5.06   </span></li>
<li>
<span class="tag">?></span><span>   </span>
</li>
<li class="alt"><span> </span></li>
</ol>

PHP floating point type rounding intval---for variables Convert to integer type

Example intval()

<ol class="dp-xml">
<li class="alt"><span><span class="tag"><span> ?php   </span></span></span></li>
<li><span>echo intval(4.3); //4   </span></li>
<li class="alt"><span>echo intval(4.6); // 4   </span></li>
<li>
<span class="tag">?></span><span>   </span>
</li>
<li class="alt"><span> </span></li>
</ol>

Hope the above-mentioned functions related to rounding of PHP floating point types will be useful to everyone help.


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/446141.htmlTechArticleWe often use rounding requirements in actual coding. Today we will introduce some details to you. PHP floating point type rounding ceil -- further rounding instructions float ceil ( float...
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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么设置implode没有分隔符php怎么设置implode没有分隔符Apr 18, 2022 pm 05:39 PM

在PHP中,可以利用implode()函数的第一个参数来设置没有分隔符,该函数的第一个参数用于规定数组元素之间放置的内容,默认是空字符串,也可将第一个参数设置为空,语法为“implode(数组)”或者“implode("",数组)”。

Go语言简介:探究Go就是Golang吗?Go语言简介:探究Go就是Golang吗?Feb 28, 2024 am 11:09 AM

Go语言简介:探究Go就是Golang吗?Go语言(也被称为Golang)是由谷歌(Google)开发的一种开源编程语言,于2007年开始设计,2009年正式发布,旨在提高程序员的工作效率和编程快乐度。尽管很多人称其为Golang,但其官方名称仍是Go语言。那么,Go和Golang究竟是同一种语言吗?为了解答这个问题,让我们深入探究一下这门语言的背景、特点和

PHP数组的性能优化技巧探究PHP数组的性能优化技巧探究Mar 13, 2024 pm 03:03 PM

PHP数组是一种非常常见的数据结构,在开发过程中经常会用到。然而,随着数据量的增加,数组的性能可能会成为一个问题。本文将探讨一些PHP数组的性能优化技巧,并提供具体的代码示例。1.使用合适的数据结构在PHP中,除了普通数组外,还有一些其他数据结构,如SplFixedArray、SplDoublyLinkedList等,它们在特定情况下可能比普通数组性能更好

php怎么去除首位数字php怎么去除首位数字Apr 20, 2022 pm 03:23 PM

去除方法:1、使用substr_replace()函数将首位数字替换为空字符串即可,语法“substr_replace($num,"",0,1)”;2、用substr截取从第二位数字开始的全部字符即可,语法“substr($num,1)”。

php有操作时间的方法吗php有操作时间的方法吗Apr 20, 2022 pm 04:24 PM

php有操作时间的方法。php中提供了丰富的日期时间处理方法:1、date(),格式化本地日期和时间;2、mktime(),返回日期的时间戳;3、idate(),格式化本地时间为整数;4、strtotime(),将时间字符串转为时间戳等等。

PHP魔法函数探究:__clone()PHP魔法函数探究:__clone()Jun 19, 2023 pm 10:28 PM

在PHP的面向对象编程中,除了常规的用于创建对象的构造函数(__construct),还有很多针对对象操作的特殊函数,这些被称为“魔法函数”。其中,一个非常重要的魔法函数就是__clone()。在本文中,我们将对此进行探究。一.__clone()是什么__clone()是PHP中一个特殊的函数,用于在对象被复制时调用。它的作用等同于对象的克隆,也就是复制一

PHP函数探究——array_key_first()PHP函数探究——array_key_first()Jun 21, 2023 pm 12:41 PM

PHP函数探究——array_key_first()在PHP7.3中,官方新增了一个数组函数——array_key_first()。这个函数能够返回数组中第一个键名。在本文中,我们将深入探究这个函数的用法和场景。语法array_key_first(array$array):mixed说明array_key_first()函数接收一个数组参数,并返回

See all articles

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function