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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。