
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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