Non-decimal radices/Convert: Difference between revisions

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