Exemple
Convertir octal en décimal:
<?php
echo octdec("36") . "<br>";
echo octdec("12") . "<br>";
echo octdec("3063") . "<br>";
echo octdec("106");
?>
»Exécuter exemple Définition et utilisation
Le octdec() convertit un nombre octal en un nombre décimal.
Astuce: Pour convertir décimal en octal, regardez la decoct() fonction.
Syntaxe
octdec( octal_string );
Paramètre | La description |
---|---|
octal_string | Champs obligatoires. Indique la chaîne octal pour convertir |
Détails techniques
Valeur de retour: | La valeur décimale de octal_string |
---|---|
Type de retour: | Flotteur / entier |
PHP Version: | 4+ |
<PHP Math Reference