Malhar Lathkar has Published 154 Articles

PHP intdiv() Function

Malhar Lathkar

Malhar Lathkar

Updated on 29-Jun-2020 09:00:19

74 Views

Definition and UsageThe intdiv() function returns integer quotient of two integer parameters. If  x/y results in i as division and r as remainder so thatx = y*i+r In this case,  intdiv(x, y) returns i Syntaxintdiv ( int $x , int $y ) : int ParametersSr.NoParameter & Description1xThis parameter forms numerator part of division ... Read More

PHP hypot() Function

Malhar Lathkar

Malhar Lathkar

Updated on 29-Jun-2020 08:59:14

177 Views

Definition and UsageThe hypot() function calculates length of hypotenus of a right angled triangle. Hypoteneuse is calculated as per following formula −h=sqrt(x2+y2) where x and y are other two sides of a right angled triangleFor example, if x=3 and y=4, hypot(x, y)=5 which is equal to sqrt(32+42) = sqrt(25) =5This ... Read More

PHP hexdec() Function

Malhar Lathkar

Malhar Lathkar

Updated on 29-Jun-2020 08:57:15

122 Views

Definition and UsageThe hexdec() function returns a decimal number equivalent of a hexadecimal number embedded in a string.This function returns a a decimal integer, though larger values may result in floats.Syntaxhexdec ( string $hex_string ) : numberParametersSr.NoParameter & Description1hex_stringA decimal number to be converted in equivalent octal representationReturn ValuesPHP hexdec() ... Read More

PHP getrandmax() Function

Malhar Lathkar

Malhar Lathkar

Updated on 29-Jun-2020 08:54:47

191 Views

Definition and UsageThe getrandmax() function returns largest integer that can be used in PHP. Value returned by this function serves as the upper limit for rand() function to generate random number.This function always returns an integer.Syntaxgetrandmax ( void ) : intParametersSr.NoParameter & Description1This function needs no parametersReturn ValuesPHP getrandmax() function ... Read More

PHP fmod() Function

Malhar Lathkar

Malhar Lathkar

Updated on 29-Jun-2020 08:53:16

239 Views

Definition and UsageThe name fmod stands for floating modulo . This function returns remainder of division of two floating point numbers. If  x/y results in i as division and r as remainder so thatx = y*i+r In this case,  fmod(x, y) returns rSyntaxfmod ( float $x , float $y ) : ... Read More

PHP floor() Function

Malhar Lathkar

Malhar Lathkar

Updated on 29-Jun-2020 08:51:42

743 Views

Definition and UsageThe floor() function is another in-built function in PHP iterpreter. This function accepts any float number as argument and rounds it down to the next lowest integer.This function always returns a float number as range of float is bigger than that of integer.Syntaxfloor ( float $num ) : ... Read More

PHP expm1() Function

Malhar Lathkar

Malhar Lathkar

Updated on 29-Jun-2020 08:49:09

78 Views

Definition and UsageThe expm1() function returns exp(number) - 1, computed in a way that is accurate even when the value of number is close to zero, a case where 'exp (number) - 1' would be inaccurate due to subtraction of two numbers that are nearly equal.expm1(x) = exp(x) - 1This ... Read More

PHP exp() Function

Malhar Lathkar

Malhar Lathkar

Updated on 29-Jun-2020 08:47:31

153 Views

Definition and UsageThe exp() function calculates exponent of e that is Euler Number. PHP has a predefined constant M_E that represents Euler Number and is equal to 2.7182818284590452354. Hence, exp(x) returns 2.7182818284590452354xThis function always returns a float.Syntaxexp ( float $arg ) : floatParametersSr.NoParameter & Description1arga floating point number to raise ... Read More

PHP deg2rad() Function

Malhar Lathkar

Malhar Lathkar

Updated on 29-Jun-2020 08:46:07

235 Views

Definition and UsageMost trigonometric functions like sin, cos, tan etc require angle argument in radians. The deg2rad() function proves useful in conversion of degrees to radians.This function returns a float number such that number=deg2rad(x) where is angle in degrees. angle in radian = angle in deg *180/piFor example deg2rad(30) is ... Read More

PHP decoct() Function

Malhar Lathkar

Malhar Lathkar

Updated on 29-Jun-2020 08:44:20

118 Views

Definition and UsageThe decoct() function returns a string that contains octal equivalent of given decimal number argument.This function returns a string with octal characters (0 to 7).Syntaxdecoct ( int $number ) : stringParametersSr.NoParameter & Description1numberA decimal number to be converted in equivalent octal representationReturn ValuesPHP decoct() function returns an octal ... Read More

Advertisements