PHP decbin() Function

PHP Math Reference : Convert decimal to binary

Definition and Usage

The decbin() function converts a decimal number to a binary number.

Tip: To convert binary to decimal, look at the bindec() function.

Syntax

decbin(number);

Parameter Values

Parameter Description
number Required. Specifies the decimal value to convert

Technical Details

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

❮ PHP Math Reference