Search w3schools.com:

SHARE THIS PAGE

PHP octdec() Function


PHP Math Reference Complete PHP Math Reference

Definition and Usage

The octdec() function converts an octal number to a decimal number.

Syntax

octdec(oct_number)

Parameter Description
oct_number Required. Specifies the octal number to convert


Example

<?php
echo octdec("36") . "<br />";
echo octdec("12") . "<br />";
echo octdec("3063") . "<br />";
echo octdec("106");
?>

The output of the code above will be:

30
10
1587
70


PHP Math Reference Complete PHP Math Reference

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]