The Mind of Scott
PHP - The opposite of the bin2hex function
The opposite of the bin2hex function is: pack('H*', $HexWord);
Sample PHP code, note comment slashes:
';
$HexWord = bin2hex($Word);
var_dump($HexWord);
echo '
';
$WordAgain = pack('H*', $HexWord);
echo '
WordAgain with pack H*';
var_dump($WordAgain);
echo '
';
?>
Tech Stuff Page
Home