bin2hex
(PHP 4, PHP 5, PHP 7, PHP 8)
bin2hex — Converte um dado binário em representação hexadecimal
Descrição
Retorna uma string ASCII uma representação hexadecimal de
string
. A conversão é feita byte-wise
com o high-nibble primeiro.
Parâmetros
string
-
Uma string.
Valor Retornado
Retorna a representação hexadecimal de uma dada string.
Exemplos
Example #1 bin2hex() example
<?php
$hex = bin2hex('Hello world!');
var_dump($hex);
var_dump(hex2bin($hex));
?>
O exemplo acima produzirá:
string(24) "48656c6c6f20776f726c6421" string(12) "Hello world!"