Syntax of decbin in PHP
string decbin(int decimal)
Converts the provided decimal value to a binary representation of it. Up to a 32-bit number, or 2,147,483,647 decimal, can be converted
Example of decbin in PHP
<?php
echo decbin(12) . "\n";
echo decbin(26);
?>
1100 11010