Show Output
PHP Convert a Decimal Number to Binary and Vice Versa
"; // 0utputs: 10 echo decbin(12) . "
"; // 0utputs: 1100 echo decbin(100) . "
"; // 0utputs: 1100100 // Convert Binary to Decimal echo bindec(10) . "
"; // 0utputs: 2 echo bindec(1100) . "
"; // 0utputs: 12 echo bindec(1100100) . "
"; // 0utputs: 100 ?>