PHP decbin( ) Function Last Updated : 22 Jun, 2023 Comments Improve Suggest changes Like Article Like Report While working with numbers, many times we need to convert the bases of number and one of the most frequent used conversion is decimal to binary conversion. PHP provides us with a built-in function, decbin() for this purpose.The decbin() function in PHP is used to return a string containing a binary representation of the given decimal number argument. decbin stands for decimal to binary. Syntax: string decbin(value) Parameters: This function accepts a single parameter value. It is the decimal number which you want to convert in binary representation. Return Value: It returns a string that represent the binary value of the decimal number passed to the function as argument. Examples: Input : decbin(12) Output : 1100 Input : decbin(26) Output : 11010 Input : decbin(2147483647) Output : 1111111111111111111111111111111 (31 1's) Below programs illustrate the decbin() function in PHP: Passing 12 as a parameter html <?php echo decbin(12); ?> Output: 1100 Passing 26 as a parameter: html <?php echo decbin(26); ?> Output: 11010 When the largest signed integer is passed as a parameter: html <?php echo decbin(2147483647); ?> Output: 1111111111111111111111111111111 Reference: https://www.php.net/manual/en/function.decbin.php Create Quiz Comment S Shubrodeep Banerjee Follow 0 Improve S Shubrodeep Banerjee Follow 0 Improve Article Tags : Misc Web Technologies PHP PHP-math PHP-function +1 More Explore BasicsPHP Syntax4 min readPHP Variables5 min readPHP | Functions6 min readPHP Loops4 min readArrayPHP Arrays5 min readPHP Associative Arrays4 min readMultidimensional arrays in PHP5 min readSorting Arrays in PHP4 min readOOPs & InterfacesPHP Classes2 min readPHP | Constructors and Destructors5 min readPHP Access Modifiers4 min readMultiple Inheritance in PHP4 min readMySQL DatabasePHP | MySQL Database Introduction4 min readPHP Database connection2 min readPHP | MySQL ( Creating Database )3 min readPHP | MySQL ( Creating Table )3 min readPHP AdvancePHP Superglobals6 min readPHP | Regular Expressions12 min readPHP Form Handling4 min readPHP File Handling4 min readPHP | Uploading File3 min readPHP Cookies9 min readPHP | Sessions7 min read Like