Zahlensysteme:

"; $x = 29; echo "Dezimalzahl: $x
"; echo "als Dualzahl: " . decbin($x) . " = " . bindec("11101") . " = " . 0b11101 . "
"; echo "als Oktalzahl: " . decoct($x) . " = " . octdec("35") . " = " . 035 . "
"; echo "als Hexadezimalzahl: " . dechex($x) . " = " . hexdec("1d") . " = " . 0x1d . "
"; echo "Zahl zur Basis 4: " . base_convert($x,10,4) . "
"; echo "Zahl zur Basis 32: " . base_convert($x,10,32); ?>