Definition: The Octdec () PHP Function is used to convert an octal number into a decimal. This is similar to the base_convert () PHP function only it works specifically for turning octal numbers into base 10. The opposite function, Decoct (), converts a decimal into an octal number.
Also Known As: convert octal number
Examples:
<?php
echo(octdec(1) . "<br />");
echo(octdec(144) . "<br />");
echo(octdec(6654) . "<br />");
echo(octdec(56052) . "<br />");
?>
This would return the following:1
100
3500
23594

