Non-decimal radices/Convert: Difference between revisions

m (Moved to Arith cat)
Line 297:
 
=={{header|PHP}}==
PythonPHP has a base_convert() function that directly converts between strings of one base and strings of another base:
<php>base_convert("26", 10, 16); // returns "1a"</php>
 
Anonymous user