Converta "Olá, mundo!" para um valor hexadecimal:
<?php $str = bin2hex("Olá mundo!");echo($str ?>A função bin2hex() converte uma string de caracteres ASCII em um valor hexadecimal. Strings podem ser convertidas novamente usando a função pack().
bin2hex( string )
parâmetro | descrever |
---|---|
corda | Obrigatório. Especifica a string a ser convertida. |
Valor de retorno: | Retorna o valor hexadecimal da string a ser convertida. |
---|---|
Versão PHP: | 4+ |
Converta um valor de string de binário para hexadecimal e vice-versa:
<?php$str = "Olá mundo!";echo bin2hex($str) "<br>";echo pack("H*",bin2hex($str)) "<br>";?>.