English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

bindec() function in PHP

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

Syntax

bindec(bin_str)

Parameter

  • bin_str-The binary string to be converted

Returns

Thisbindec()The function returns the decimal value of the specified string bin_str

Example

<?php
   echo bindec("1101");
?>

Output Result

Output displays thisbindec()A function returns a decimal value:

13