abs() | Returns the absolute value of a number. |
acos() | Returns the arc cosine (inverse of cosine) of a number in radians. |
acosh() | Returns the inverse hyperbolic cosine of a number. |
asin() | Returns the arc sine (inverse of sine) of a number in radians. |
asinh() | Returns the inverse hyperbolic sine of a number. |
atan() | Returns the arc tangent (inverse of tangent) of a number in radians. |
atan2() | Returns the arc tangent of the two variables in radians. |
atanh() | Returns the inverse hyperbolic tangent of a number. |
base_convert() | Converts a number between different number bases. |
bindec() | Converts a binary number to decimal. |
ceil() | Rounds a number up to the nearest integer. |
cos() | Returns the cosine of an angle in radians. |
cosh() | Returns the hyperbolic cosine of an angle in radians. |
decbin() | Converts a decimal number to a binary number. |
dechex() | Converts a decimal number to a hexadecimal number. |
decoct() | Converts a decimal number to an octal number. |
deg2rad() | Converts an angle from degrees to radians. |
exp() | Returns e raised to the power of a given number. |
expm1() | Returns e raised to the power of a number minus 1. |
floor() | Rounds a number down to the nearest integer. |
fmod() | Returns the remainder of the division of two numbers. |
getrandmax() | Returns the largest possible random value returned by rand() . |
hexdec() | Converts a hexadecimal number to a decimal number. |
hypot() | Returns the square root of the sum of squares of its arguments. |
intdiv() | Performs integer division (returns the quotient of two numbers). |
is_finite() | Checks whether a number is finite. |
is_infinite() | Checks whether a number is infinite. |
is_nan() | Checks whether a value is NaN (Not a Number). |
lcg_value() | Returns a pseudo-random number in the range between 0 and 1. |
log() | Returns the natural logarithm (base e) of a number. |
log10() | Returns the base-10 logarithm of a number. |
log1p() | Returns the logarithm of 1 + number . |
max() | Returns the highest value from a given set of numbers. |
min() | Returns the lowest value from a given set of numbers. |
mt_getrandmax() | Returns the largest possible value returned by mt_rand() . |
mt_rand() | Generates a random number using the Mersenne Twister algorithm. |
mt_srand() | Seeds the Mersenne Twister random number generator. |
octdec() | Converts an octal number to a decimal number. |
pi() | Returns the value of Pi (Ï€). |
pow() | Returns the result of raising a number to the power of another number. |
rad2deg() | Converts an angle from radians to degrees. |
rand() | Generates a random integer. |
round() | Rounds a floating-point number to the nearest integer. |
sin() | Returns the sine of an angle in radians. |
sinh() | Returns the hyperbolic sine of an angle in radians. |
sqrt() | Returns the square root of a number. |
srand() | Seeds the random number generator. |
tan() | Returns the tangent of an angle in radians. |
tanh() | Returns the hyperbolic tangent of an angle in radians. |