您现在的位置是:首页 > PHP函数

李清波 2021-06-17 PHP函数 1303 复制当前网址

sqrt



PHP sqrt() 函数

定义和用法

sqrt() 函数返回一个数的平方根。


语法

sqrt(x)

参数描述
x必需。一个数字。


说明

返回 x 的平方根。


提示和注释

注释:如果参数 x 是负数,则 sqrt() 函数返回 -1.#IND。


例子

在本例中,我们将返回不同数的平方根:

<?php
echo(sqrt(0));
echo(sqrt(1));
echo(sqrt(9));
echo(sqrt(0.64));
echo(sqrt(-9));
?>

输出:

0
1
3
0.8
-1.#IND


文章来源:https://liqingbo.com/blog-740.html

上一篇:srand

下一篇:sinh

评论