Non-decimal radices/Convert: Difference between revisions

Content added Content deleted
(added php)
Line 313: Line 313:
// converts int to hex string
// converts int to hex string
dechex(26); // returns "1a"
dechex(26); // returns "1a"
// converts int to binary string
// converts binary string to int
bindec("11010"); // returns 26
bindec("11010"); // returns 26
// converts int to octal string
// converts octal string to int
octdec("32"); // returns 26
octdec("32"); // returns 26
// converts int to hex string
// converts hex string to int
hexdec("1a"); // returns 26</php>
hexdec("1a"); // returns 26</php>