PHP – atan2() Function
The PHP atan2() function returns the arc tangent of y/x, in radians, where x and y are the coordinates of a point (x,y).
The PHP atan2() function returns the arc tangent of y/x, in radians, where x and y are the coordinates of a point (x,y).
The PHP base_convert() function converts a number from one number base to another.
The PHP ceil() function rounds a number up to the nearest integer if necessary.
The PHP cos() function returns the cosine (a numeric value between -1 and 1) of a number.
The PHP cosh() function returns the hyperbolic cosine of a number (equivalent to (exp(number) + exp(-number)) / 2).
The PHP floor() function rounds a number DOWN to the nearest integer, if necessary, and returns the result.
The PHP getrandmax() function returns the largest possible value that can be returned by the rand() function.
The PHP hexdec() function converts a hexadecimal number to a decimal number.
The PHP hypot() function calculates the hypotenuse of a right-angle triangle.
The PHP is_finite() function checks whether a value is finite or not, and returns true (1) if the value is a finite number, or false/nothing if not.
The PHP is_infinite() function checks whether a value is infinite or not, and returns true (1) if the value is an infinite number, or false/nothing if not.