PHP:hypot()的用法 PHP

hypot (PHP 4 = 4.1.0, PHP 5) hypot — 计算一直角三角形的斜边长度 说明 float hypot ( float $x , float $y ) hypot() 函数将...
标签: php php教程

发布于  2024-3-1 21:58

PHP:floor()的用法 PHP

floor (PHP 4, PHP 5) floor — 舍去法取整 说明 float floor ( float $value ) 返回不大于 value 的最接近的整数,舍去小数部分取整。 参数
标签: php php教程

发布于  2024-3-1 21:58

PHP:getrandmax()的用法 PHP

getrandmax (PHP 4, PHP 5) getrandmax — 显示随机数最大的可能值 说明 int getrandmax ( void ) 返回调用 rand() 可能返回的最大值。 返回值...
标签: php php教程

发布于  2024-3-1 21:58

PHP:exp()的用法 PHP

exp (PHP 4, PHP 5) exp — 计算 e 的指数 说明 float exp ( float $arg ) 返回 e 的 arg 次方值。 Note: 用 &#...
标签: php php教程

发布于  2024-3-1 21:58

PHP:expm1()的用法 PHP

expm1 (PHP 4 >= 4.1.0, PHP 5) expm1 — 返回 exp(number) - 1,甚至当 number 的值接近零也能计算出准确结果 说明 float expm1 ( float $arg )
标签: php php教程

发布于  2024-3-1 21:58

PHP:deg2rad()的用法 PHP

deg2rad (PHP 4, PHP 5) deg2rad — 将角度转换为弧度 说明 float deg2rad ( float $number ) 本函数把 number 从角度转换成弧度。 参
标签: php php教程

发布于  2024-3-1 21:58

PHP:decbin()的用法 PHP

decbin (PHP 4, PHP 5) decbin — 十进制转换为二进制 说明 string decbin ( int $number ) 返回一字符串,包含有给定 number 参数的二进制表示。所...
标签: 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

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:decoct()的用法 PHP

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

发布于  2024-3-1 21:58