PHP sqrt() 函數(shù)
PHP sqrt() 函數(shù)
實例
返回不同數(shù)的平方根:
<?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() 函數(shù)返回一個數(shù)的平方根。
語法
sqrt(number);
參數(shù) | 描述 |
---|---|
number | 必需。規(guī)定一個數(shù)。 |
技術(shù)細節(jié)
返回值: | 返回 number 的平方根,如果 number 是負數(shù)則返回 NAN。 |
---|---|
返回類型: | Float |
PHP 版本: | 4+ |

相關(guān)文章
- PHP 安裝
- PHP 包含文件 include 和 require 語句
- PHP Secure E-mails
- PHP JSON
- PHP array() 函數(shù)
- PHP array_combine() 函數(shù)
- PHP array_filter() 函數(shù)
- PHP array_intersect_assoc() 函數(shù)
- PHP array_intersect_uassoc() 函數(shù)
- PHP array_key_exists() 函數(shù)
- PHP array_keys() 函數(shù)
- PHP array_splice() 函數(shù)
- PHP array_udiff() 函數(shù)
- PHP array_walk_recursive() 函數(shù)
- PHP count() 函數(shù)
- PHP each() 函數(shù)
- PHP next() 函數(shù)
- PHP pos() 函數(shù)
- PHP shuffle() 函數(shù)
- PHP Error 和 Logging 函數(shù)