Creative Commons License

Extra Applications

php4/BaseConvert.class.php
 
2283no demo link[ code ]2006-06-05 10:28:27
Generic base 10 to base N converter.

Works with a string that contains new base chars.

$base10toHex = new BaseConvert('0123456789abcdef');
echo $base10toHex->toBase(10); // a
echo $base10toHex->fromBase('b'); // 11