It calculates the value of Ex-1
Example
<?php
echo expm1(17);
?>
Output
24154952.753575
Example
<?php
echo expm1(17);
?>
Output
24154952.753575
Example
<?php
echo exp(17);
?>
Output
24154952.753575
Example
<?php
echo deg2rad(45);
?>
Output
0.78539816339745
Example
<?php
echo decoct(17);
?>
Output
21
Example
<?php
echo dechex(17);
?>
Output
11
Example
<?php
echo decbin(17);
?>
Output
10001
Example
<?php
echo cosh(90);
?>
Output
6.1020164715892E+38
Example
<?php
echo cos(90);
?>
Output
-0.44807361612917
Example
<?php
echo ceil(5.2);
?>
Output
6
Example
<?php
echo bindec(“0011”);
?>
Output
3