It converts Hexadecimal to decimal
Example
<?php
echo hexdec(17);
?>
Output
23
Example
<?php
echo hexdec(17);
?>
Output
23
Example
<?php
echo getrandmax();
?>
Output
2147483647
Example
<?php
echo fmod(4,7);
?>
Output
4
Example
<?php
echo floor(1.7);
?>
Output
1
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