Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
decbin() function in PHP
The decbin() function converts a decimal number to binary number.
Syntax
decbin(num)
Parameters
num − Specifies a number to be converted to binary.
Return
The decbin() function Returns a string representing the binary number of the decimal value.
Example
<?php
echo decbin("3865");
?>
Output
111100011001
Example
Let us see another example −
<?php
echo decbin("99");
?>
Output
1100011
Advertisements
