sqrt() 是数学函数,用于计算任意数的平方根。
用法:
float sqrt(value)
参数 | 描述 | 必需/可选 |
---|---|---|
number | 指定一个数字 | Required |
示例 1
<?php
$num=625;
echo "Your number is:$num".'<br>';
echo "By using sqrt function Your number is:".sqrt ($num);
?>
输出:
Your number is:625 By Using sqrt function Your number is:25
例2
<?php
$num=(-9);
echo "Your number is:$num".'<br>';
echo "By using sqrt function Your number is:".sqrt ($num);
?>
输出:
Your number is:-9 By using sqrt function Your number is:NAN
注意:参数的平方根或负数的特殊值 NAN。
例子3
<?php
$num=(0.09);
echo "Your number is:$num".'<br>';
echo "By using sqrt function Your number is:".sqrt ($num);
?>
输出:
Your number is:0.09 By using sqrt function Your number is:0.3
示例 4
<?php
$a=3; // One side
$b=4; // One side
$h=sqrt(pow($a,2)+pow($b,2));
echo "Your number is:$a and $b".'<br>';
echo "By using sqrt function (pow($a,2)+pow($b,2)) Your number is:".$h;
?>
输出:
Your number is:3 and 4 By using sqrt function (pow(3,2)+pow(4,2)) Your number is:5
相关用法
- PHP sqrt( )用法及代码示例
- PHP string rtrim()用法及代码示例
- PHP strsrt()用法及代码示例
- PHP strnatcasecmp()用法及代码示例
- PHP string printf()用法及代码示例
- PHP string ord()用法及代码示例
- PHP string join()用法及代码示例
- PHP Spreadsheet_Excel_Writer setAlign()用法及代码示例
- PHP strtolower()用法及代码示例
- PHP Spreadsheet_Excel_Writer setScript()用法及代码示例
- PHP str_split()用法及代码示例
- PHP stream_get_filters()用法及代码示例
- PHP Spreadsheet_Excel_Writer setOutLine()用法及代码示例
- PHP strchr()用法及代码示例
- PHP substr_compare()用法及代码示例
- PHP string sha1()用法及代码示例
- PHP strrchr用法及代码示例
- PHP strcmp()用法及代码示例
- PHP string setlocale()用法及代码示例
- PHP string sha1_file()用法及代码示例
注:本文由纯净天空筛选整理自 PHP sqrt() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。