Source Code:
(back to article)
<?php // Convert an octal number to a decimal number using the octdec() function $result = octdec("10"); // Output the result echo $result; ?>
Result:
Report an issue