| 
 数学函数 Abs 函数描述:mixed abs(mixed number); 返回值:函数abs返回参数number的绝对值。 Acos 函数描述:double acos(double number); 返回值:函数acos返回参数number的反余弦值。如果参数number大于1或小于1,则其反余弦值无意义 。 Asin 函数描述;double asin(double number); 返回值:函数asin返回参数number的反正弦值。如果参数number大于1或小于1,则其反正弦值无意义 。 Atan 函数描述:double atan(double number); 函数atan返回参数number的反正切值。 Atan2 函数描述:Double atan2(double x , double y);  返回值:函数atan2返回由直角坐标系指定的座标点在极座标系中的角度的弧度值。 BinDec 函数描述:int bindec(string binary_number); 返回值:函数bindec返回一个用二进制数写成的字符串binary_number的整数值。PHP使用32位带符号的整数,其二进制数的第一位是符号位。 Ceil 函数描述:int ceil(double number); 返回值:函数ceil返回大于参数number 的最小整数;若number为整数。,则返回其本身。 Cos 函数描述:double cos(double angle); 返回值:函数cos返回以弧度的大小为参数angle的角的余弦值。 DecBin 与bindec相反,将十进制转为二进制。 DecHex(<->HexDec) 返回十六进制值 DecOct(<->OctDec) 返回八进制值 Deg2rad(<->Rad2reg) 函数描述:double deg2red(double angle); 返回值:函数deg2red返回角度数angle相对应的弧度值。 Exp 函数描述:double exp(double power); 返回值:函数exp返回自然对数的power次幂。 Floor 函数描述:int floor(double number); 返回值:返回参数number的整数部分。 Getrandmax 函数描述:int getrandmax(); 返回值;返回由函数rand所能返回的最大值 Log(Log10) 函数描述:Double log(double number); 返回值:返回参数number的自然对数(返回以10为底的对数) Max (<->Min) 函数描述:mixed max(mixed arg1, mixed arg2, …,mixed argn); 返回值:返回此数组中的最大值(最小值),若参数中有浮点数,则所有参数转化成浮点数,返回值也为浮点数;否则所有参数转化成整数,返回值为整数。 pi 函数描述:double pi(); 返回值:函数pi返回圆周率的近似值。 Pow 函数描述:double pow(double base,double power); 返回值:函数pow返回参数base的power次幂。 Rand 函数描述:int rand(int lowest,int longest); 说明:函数rand使用前要用srand激活。 返回值:函数rand返回可选参数lowest和longest之间的一个数(包含两个参数);若无参数,则返回值的范围从零到getrandmax返回的整数。 Round 函数描述:double round(double number); 返回值:函数round返回最接近参数number的整数。 Sin 函数描述:double sin(double angle); 返回值:函数sin返回一个用弧度表示的角的正弦值。 Sqrt 函数描述:double sqrt(double number); 说明:在函数sqrt中,参数number不能小于0。 返回值:函数sqrt返回参数number的平方根。 Srand 函数描述:srand(int seed); 说明:函数srand激活随机数发生器。参数seed是随机产生的种子,即所得的随机数是由参数经过一系列计算所的。 返回值:无。 Tan 函数描述:double tan(duoble angle); 返回值:函数tan返回以弧度表示的角的正切值。 
 |