English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
Thisdecbin()
The function converts a decimal number to a binary number.
decbin(num)
num-the number to be converted to binary.
Thisdecbin()
The function returns a string that represents the binary number of a decimal value.
<?php echo decbin("3865"); ?>
Output Result
111100011001
Let's look at another example-
<?php echo decbin("99"); ?>
Output Result
1100011