PHP bindec() Function

PHP Math Reference : Convert binary to decimal

Definition and Usage

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

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

Syntax

bindec(binary_string);

Parameter Values

Parameter Description
binary_string Required. Specifies the binary string to convert.
Note:
Must be a string!

Technical Details

Return Value: The decimal value of binary_string
Return Type: Float / Integer
PHP Version: 4+

❮ PHP Math Reference