Answers for "decimal to binary php"

PHP
0

decimal to binary php

$number = 13;
decbin($number); // outputs -> 1101 (string)
Posted by: Guest on February-15-2022

Browse Popular Code Answers by Language