phpMoot
Author: phpMoot August 30, 2010 0 Comments
PHP - Examples
<?php $orig_dec = 66251125; $dec2bin = decbin($orig_dec); $bin2dec = bindec($dec2bin);
echo "original decimal number: $orig_dec <br>"; echo "new binary number: $dec2bin <br>"; echo "back to decimal: $bin2dec <br>"; ?>
← Previous post
Next post →
Your email address will not be published. Required fields are marked *
Save my name, email, and website in this browser for the next time I comment.