PHP decoct() Function

PHP Math Reference : Convert decimal to octal

Definition and Usage

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

Tip: To convert octal to decimal, look at the octdec() function.

Syntax

decoct(number);

Parameter Values

Parameter Description
number Required. Specifies the decimal value to convert

Technical Details

Return Value: A string that contains the octal number of the decimal value
Return Type: String
PHP Version: 4+

❮ PHP Math Reference