cos() 函数是预定义的 PHP 函数。它用于返回数字的余弦。它返回一个介于 -1 和 1 之间的数值,表示角度的余弦。
用法:
cos(number);
参数 | 描述 | 必需/可选 |
---|---|---|
number | 指定一个数字 | Required |
例子1
<?php
$num=3;
echo "Your number is:".$num;
echo "<br>"."By using 'cos()' function your number is:".(cos($num));
?>
输出:
Your number is:3 By using 'cos()' function your number is:-0.98999249660045
例子2
<?php
$num=(-3);
echo "Your number is:".$num;
echo "<br>"."By using 'cos()' function your number is:".(cos($num));
?>
输出:
Your number is:-3 By using 'cos()' function your number is:-0.98999249660045
例子3
<?php
$num=0;
echo "Your number is:".$num;
echo "<br>"."By using 'cos()' function your number is:".(cos($num));
?>
输出:
Your number is:0 By using 'cos()' function your number is:1
示例 4
<?php
echo "Your number is:M_PI";
echo "<br>"."By using 'cos()' function your number is:".(cos(M_PI));
?>
输出:
Your number is:M_PI By using 'cos()' function your number is:-1
例 5
<?php
$num=2*M_PI;
echo "Your number is 2*M_PI:".$num;
echo "<br>"."By using 'cos()' function your number is:".(cos(2*M_PI));
?>
输出:
Your number is 2*M_PI:6.2831853071796 By using 'cos()' function your number is:1
相关用法
- PHP cos( )用法及代码示例
- PHP cosh()用法及代码示例
- PHP cosh( )用法及代码示例
- PHP compact()用法及代码示例
- PHP count_chars()用法及代码示例
- PHP convert_uudecode()用法及代码示例
- PHP copy( )用法及代码示例
- PHP connection_status()用法及代码示例
- PHP collator_sort()用法及代码示例
- PHP count()用法及代码示例
- PHP convert_cyr_string()用法及代码示例
- PHP constant()用法及代码示例
- PHP collator_compare()用法及代码示例
- PHP collator_sort_with_sort_keys()用法及代码示例
- PHP collator_asort()用法及代码示例
- PHP convert_uuencode()用法及代码示例
- PHP crypt(), password_hash()用法及代码示例
- PHP closedir( )用法及代码示例
- PHP chop()用法及代码示例
- PHP ctype_punct()用法及代码示例
注:本文由纯净天空筛选整理自 PHP cos() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。