Section courante

A propos

Section administrative du site

DECHEX

Décimal à hexadécimal
PHP 4.0+

Syntaxe

function dechex($expression)

Paramètres

Nom Description
$expression Ce paramètre permet d'indiquer une expression représentant un nombre à traiter

Retour

Valeur Description
Chaine de caractères Ce type de données contient le nombre hexadécimal.

Description

Cette fonction permet de transformer en base décimal vers une base hexadécimal.

Exemple

Voici quelques exemples typiques de l'utilisation de cette fonction :

  1. <?php
  2. echo "00h = " . dechex(0) . "<br />";
  3. echo "01h = " . dechex(1) . "<br />";
  4. echo "02h = " . dechex(2) . "<br />";
  5. echo "0Ah = " . dechex(10) . "<br />";
  6. echo "0Fh = " . dechex(15) . "<br />";
  7. echo "10h = " . dechex(16) . "<br />";
  8. echo "20h = " . dechex(32) . "<br />";
  9. echo "56h = " . dechex(86) . "<br />";
  10. echo "73h = " . dechex(115) . "<br />";
  11. echo "EFh = " . dechex(239) . "<br />";
  12. echo "FFh = " . dechex(255) . "<br />";
  13. ?>

on obtiendra le résultat suivant :

00h = 0
01h = 1
02h = 2
0Ah = a
0Fh = f
10h = 10
20h = 20
56h = 56
73h = 73
EFh = ef
FFh = ff

Voir également

Système - Nombre - Hexadécimal

Références

La Bible Micro Application PHP, Laurent Guédon, Damien Heute, Thomas Heute, Pierre-Emmanuel Muller, 2003, ISBN: 2-7429-3239-9, pages 323.
PHP 4 - Guide du développeur, Edition First Interactive, Blake Schwendiman, 2002, ISBN: 2-84427-283-5, page 413

Dernière mise à jour : Mercredi, le 25 mars 2015