PHP Math 函数
sqrt() 函数返回一个数的平方根。
sqrt(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
Search: