Convert octal to decimal:
<?phpecho octdec("36") . "<br>";echo octdec("12") . "<br>";echo octdec("3063") . "<br>";echo octdec("106" );?>The octdec() function converts an octal number to a decimal number.
Tip: To convert a decimal number to octal, check out the decoct() function.
octdec( octal_string );
parameter | describe |
---|---|
octal_string | Required. Specifies the octal string to be converted. |
Return value: | Decimal value of octal_string . |
---|---|
Return type: | Float/Integer |
PHP version: | 4+ |