PHP:atan2()的用法 PHP

atan2 (PHP 4, PHP 5) atan2 — 两个参数的反正切 说明 float atan2 ( float $y , float $x ) 本函数计算两个变量 x 和 y 的反正切值。
标签: php php教程

发布于  2024-3-1 21:58

PHP:atanh()的用法 PHP

atanh (PHP 4 >= 4.1.0, PHP 5) atanh — 反双曲正切 说明 float atanh ( float $arg ) 返回 arg 的反双曲正切值,即,其双曲正切为
标签: php php教程

发布于  2024-3-1 21:58

PHP:atan()的用法 PHP

atan (PHP 4, PHP 5) atan — 反正切 说明 float atan ( float $arg ) 返回 arg 的反正切值,单位是弧度。atan() 是 tan() 的反函数,它的意思是在 ...
标签: php php教程

发布于  2024-3-1 21:58

PHP:cosh()的用法 PHP

cosh (PHP 4 >= 4.1.0, PHP 5) cosh — 双曲余弦 说明 float cosh ( float $arg ) 返回 arg 的双曲余弦值,定义为 (exp(arg) + exp(-arg))/2。
标签: php php教程

发布于  2024-3-1 21:58

PHP:cos()的用法 PHP

cos (PHP 4, PHP 5) cos — 余弦 说明 float cos ( float $arg ) cos() 返回参数 arg 的余弦值。参数 arg 的单位为弧度。 参数 arg
标签: php php教程

发布于  2024-3-1 21:58

PHP:bindec()的用法 PHP

bindec (PHP 4, PHP 5) bindec — 二进制转换为十进制 说明 number bindec ( string $binary_string ) 返回 binary_string 参数所表示的二进制数的十进...
标签: php php教程

发布于  2024-3-1 21:58

PHP:ceil()的用法 PHP

ceil (PHP 4, PHP 5) ceil — 进一法取整 说明 float ceil ( float $value ) 返回不小于 value 的下一个整数,value 如果有小数部分则进一位。 ...
标签: php php教程

发布于  2024-3-1 21:58

PHP:decoct()的用法 PHP

decoct (PHP 4, PHP 5) decoct — 十进制转换为八进制 说明 string decoct ( int $number ) 返回一字符串,包含有给定 number 参数的八进制表示。所...
标签: php php教程

发布于  2024-3-1 21:58

PHP:base_convert()的用法 PHP

base_convert (PHP 4, PHP 5) base_convert — 在任意进制之间转换数字 说明 string base_convert ( string $number , int $frombase , i...
标签: php php教程

发布于  2024-3-1 21:58

PHP:dechex()的用法 PHP

dechex (PHP 4, PHP 5) dechex — 十进制转换为十六进制 说明 string dechex ( int $number ) 返回一字符串,包含有给定 number 参数
标签: php php教程

发布于  2024-3-1 21:58