PHP sqrt() 函数
PHP sqrt() 函数
实例
返回不同数的平方根:
<?php
echo(sqrt(0) . "<br>");
echo(sqrt(1) . "<br>");
echo(sqrt(9) . "<br>");
echo(sqrt(0.64) . "<br>");
echo(sqrt(-9));
?>
echo(sqrt(0) . "<br>");
echo(sqrt(1) . "<br>");
echo(sqrt(9) . "<br>");
echo(sqrt(0.64) . "<br>");
echo(sqrt(-9));
?>
运行实例 »
定义和用法
sqrt() 函数返回一个数的平方根。
语法
sqrt(number);
参数 | 描述 |
---|---|
number | 必需。规定一个数。 |
技术细节
返回值: | 返回 number 的平方根,如果 number 是负数则返回 NAN。 |
---|---|
返回类型: | Float |
PHP 版本: | 4+ |
PHP Math 参考手册
相关文章
- PHP 安装
- PHP 包含文件 include 和 require 语句
- PHP Secure E-mails
- PHP JSON
- PHP array() 函数
- PHP array_combine() 函数
- PHP array_filter() 函数
- PHP array_intersect_assoc() 函数
- PHP array_intersect_uassoc() 函数
- PHP array_key_exists() 函数
- PHP array_keys() 函数
- PHP array_splice() 函数
- PHP array_udiff() 函数
- PHP array_walk_recursive() 函数
- PHP count() 函数
- PHP each() 函数
- PHP next() 函数
- PHP pos() 函数
- PHP shuffle() 函数
- PHP Error 和 Logging 函数