PHP – is_nan() Function
The PHP is_nan() function checks whether a value is ‘not a number’, and returns true (1) if the value is ‘not a number’ or false/nothing if it is a number.
The PHP is_nan() function checks whether a value is ‘not a number’, and returns true (1) if the value is ‘not a number’ or false/nothing if it is a number.
The PHP lcg_value() function returns a pseudo random number in a range between 0 and 1.
The PHP log() function returns the natural logarithm of a number, or the logarithm of number to base.
The PHP log1p() function returns log(1+number), computed in a way that is accurate even when the value of number is close to zero.
The PHP max() function returns the highest value in an array, or the highest value of several specified values.
The PHP min() function returns the lowest value in an array, or the lowest value of several specified values.
The PHP mt_getrandmax() function returns the largest possible value that can be returned by mt_rand().
The PHP mt_rand() function generates a random integer using the Mersenne Twister algorithm.
The PHP mt_srand() function seeds the Mersenne Twister random number generator.
The PHP sinh() function returns the hyperbolic sine of a number, which is equal to (exp(number) – exp(-number))/2).