PHP 浮点型

WBOY
发布: 2024-08-29 13:04:08
原创
754 人浏览过

在 PHP 中,Float 数据类型用于设置小数值。浮点数是带有小数点的数字,可以扩展到指数形式。浮点数也称为浮点数。表示 float 值的各种方式有 3.14、4.75、5.88E+20 等。如果 PHP 中的值非常大并且包含小数,它会自动将类型转换为 float。浮点数的最大精度约为 14 位。如果数字超出最大数字值范围,则会失去精度。 PHP 中很少有函数可以用来检查数据类型是否为 float。

广告 该类别中的热门课程 PHP 开发人员 - 专业化 | 8 门课程系列 | 3次模拟测试

开始您的免费软件开发课程

网络开发、编程语言、软件测试及其他

程序员在变量名称前使用 float 关键字,以便在变量初始化时设置数据类型。只需提及变量名称,后跟等号和该变量的浮点/十进制值,就可以在初始化阶段将浮点值设置为变量。它们可以在任何时间点更改状态/值,除非它们将变量声明为静态。浮点数主要用于货币、标记、百分比等应用。我们可以像整数变量一样使用浮点变量,并使用加、减、乘、除等基本运算。执行这些操作时,如何存储输出值取决于计算机。

浮点值的类型

让我们看一下不同类型的浮点数:

1.短浮点数

短浮点数(short-float 类型)是实现提供的最小固定精度。这取决于您所使用的支持此数据类型的 PHP 版本。其最小精度为 13 位,最小指数大小为 5 位。精确到小数点后 4 位。

2.双浮点数

双精度浮点数是实现提供的固定精度之一。其最小精度为 50 位,最小指数大小为 8 位。这些类别的精度取决于实现。精确到小数点后 14 位。

3.长浮点数

长浮点数(long-float 类型)是实现提供的最大固定精度之一。其最小精度为 50 位,最小指数大小为 8 位。这些类别的精度取决于实现。精确到小数点后 14 位。它类似于双精度浮点数。

Float 在 PHP 中如何工作?

浮点值只不过是小数,它有自己的精度。让我们考虑一些简单的示例来了解浮点值的工作原理:

示例#1

代码:

<?php
$selling_price=75.5;
$cost_price=50.9;
echo "The value of selling price is $selling_price \n";
{
echo "The value of cost price is $cost_price ";
}
?>
登录后复制

输出:

PHP 浮点型

在上面的示例中,输出将是变量售价和成本价的值,即分配给变量的浮点值将打印在输出屏幕上。

让我们再举一个双浮点值的例子:

示例#2

代码:

<?php
$a = 10.433454545;
$b = 12.1234567893;
echo $a;
echo "\n";
echo $b;
echo "\n";
echo is_double($a);
echo "\n";
echo is_double($b);
echo "\n";
?>
登录后复制

输出:

PHP 浮点型

在上面的示例中,函数 is_double() 的输出将检查变量是否为 double float 类型。它只是检查变量是否设置了 double 值,在本例中,两个变量都已初始化为 double 值。

示例 #3

我们可以使用浮点值在 PHP 中进行基本操作:

代码:

<?php
$ab = 1.23456789;
$bc = 1.23456780;
$ep = 0.00001;
if(abs($ab-$bc) < $ep)
{
echo "true";
}
else
{
echo “false”;
}
?>
登录后复制

输出:

PHP 浮点型

$ab 变量已初始化为十进制值,与上例中的变量 $bc 类似。因此,在计算之后,如果满足条件,则会在输出屏幕上打印循环内存在的 true 语句。
函数 is_float() 可用于检查变量是否为 float 类型。 is_float() 是 PHP 中的内置函数。它是一个布尔函数,因此当类型为浮点数时返回 TRUE,否则返回 FALSE。

举个简单的例子。

示例#4

代码:

<?php
$a = 10.43;
$b = 55;
echo $a;
echo "\n";
echo $b;
echo "\n";
echo is_float($a);
echo "\n";
echo is_float($b);
?>
登录后复制

输出:

PHP 浮点型

In the above example, the output of the function is_float() will be true for the first echo statement and false for the second one. In this example, the output will be 1, and after the break also it will be 1. It just checks whether the float value is set to the variable, and in this example, one of the variables has been initialized float values.

Like is_float () function, we have a function called var_dump () function to print both the type and the value as output. This function is used to print the data type associated with the variable that the developers want to print on the screen.

Example #5

Code:

<?php
$a = 10.95;
echo $a;
echo "\n";
echo is_float($a);
echo "\n";
var_dump($a);
echo "\n";
?>
登录后复制

Output:

PHP 浮点型

In the above example, the output of is_float() function and var_dump function() differs. The var_dump() function will print the data type along with the value of the variable.

Conclusion

In this article, we discussed the float values and their types. Many of the Float types are used in many programs and applications where most of the activities have calculations and precisions. Float values have a vital role in many programming languages for their precision and also used in large amounts.

以上是PHP 浮点型的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
php
来源:php
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板