|
HexToBin
|
Informations rapides |
|
|
Informations détaillées
|
Description :
Fonction pour convertir l'hexa en binaire.
Portion de code
1 2 3 4 5 6 7 8 9 10 11 12
|
<?php function hex2bin($source) { $strlen = strlen($source); for ($i=0;$i<strlen($source);$i=$i+2) { $bin .= chr(hexdec(substr ($source, $i,2))); } return $bin; } ?> |
|
Informations & Services |
 |
|
|
 |
Newsletter
Autre Sources
Tips
| Convertisseurs |
Aucune Catégorie
|
|