PHP

PHP connection_status function – Returns connection status bitfield

Description The connection_status() function takes no parameters and returns 0 if the connection is live and execution is still taking…

PHP ceil function – Round fractions up

Description Returns an integer that is the next larger than the float used as the argument. In essence, it rounds…

PHP bindec function – Convert a number between arbitrary bases

Description The bindec() function converts a binary number into a decimal number. It takes just one parameter, which is the…

PHP base_convert function – Convert a number between arbitrary bases

Description Converts a number from one base to another. The base the number is currently in is from, and the…

PHP atanh function – Inverse hyperbolic tangent

Description Returns the inverse hyperbolic tangent of value. Syntax: atanh(float $num): float Parameters ParameterDescription yDividend parameter xDivisor parameter Return Values…

PHP atan2 function – Arc tangent of two variables

Description This function returns the value of the arctangent of the point denoted by the x and y parameters. The…

PHP atan function – Arc tangent

Description The atan() function calculates the arc tangent value of the number provided as its only parameter, essentially reversing the…

PHP asin function – Arc sine

Description The asin() function calculates the arc sine value of the number provided as its only parameter, essentially reversing the…

PHP addslashes function – Quote string with slashes

Description There are many situations where single quotes ('), double quotes ("), and backslashes (\) can cause problems—databases, files, and…

PHP function acos – Arc cosine

Description The acos() function calculates the arc cosine value of the number provided as its only parameter, essentially reversing the…