Mostrar lista de opciones

base_convert()

« base64_encode | basename »
<?php
$string 
base_convert (
    
// string $number
    
// int $frombase
    
  // int $tobase
);
?>
Resultado
$string = '101000110111001100110100'
Ejemplos
#1 base_convert  ("A37334",
 
16,
 
2)
#2 base_convert  (255,
 
10,
 
16)
Ver también
intval