Note Submitter: jerome dot heil at gmail dot com
Reason: spam
----
nilzie what you have done is a simple base conversion, here
is the code, and the url :
http://www.php.net/manual/en/function.base-convert.php
<?php
echo base_convert("101101011100", 2, 16);
//print b5c
echo base_convert("1011 1000 1111 1100", 2, 16);
//print b8fc
echo base_convert("1000 1011 1101 0010", 2, 16);
//print 8bd2
?>
--
PHP Notes Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub
.php
|