PHP内置了许多数学函数,可以进行各种数学运算。以下是一些常用的数学函数:
- 加法:
加法
-add()
$sum = add($a, $b);
- 减法:
减法
-sub()
$difference = sub($a, $b);
- 乘法:
乘法
-mul()
$product = mul($a, $b);
- 除法:
除法
-div()
$quotient = div($a, $b);
- 取余:
取余
-mod()
$remainder = mod($a, $b);
- 幂运算:
幂运算
-pow()
$power = pow($a, $b);
- 开方:
开方
-sqrt()
$squareRoot = sqrt($a);
- 指数运算:
指数运算
-exp()
$exponent = exp($a);
- 对数运算:
对数运算
-log()
$logarithm = log($a);
-
三角函数:
正弦
-sin()
$sine = sin($a);
余弦
-cos()
$cosine = cos($a);
正切
-tan()
$tangent = tan($a);
-
反三角函数:
反正弦
-asin()
$inverseSine = asin($a);
反余弦
-acos()
$inverseCosine = acos($a);
反正切
-atan()
$inverseTangent = atan($a);
-
弧度转角度:
弧度转角度
-deg2rad()
$angleInDegrees = deg2rad($a);
- 角度转弧度:
角度转弧度
-rad2deg()
$angleInRadians = rad2deg($a);
- 判断是否为整数:
判断是否为整数
-is_int()
if (is_int($number)) { echo "The number is an integer."; }
- 判断是否为浮点数:
判断是否为浮点数
-is_float()
if (is_float($number)) { echo "The number is a float."; }
- 判断是否为数字:
判断是否为数字
-is_numeric()
if (is_numeric($number)) { echo "The number is a numeric value."; }
这些函数可以满足大部分数学运算的需求。如果你需要进行更复杂的数学计算,可以使用第三方库,如 MathPHP。