Hex Encode and Decode using PHP September 4, 2020 PHP 0 Comments 998 Views bin2hex and hex2bin functions <?php $text = 'Hello'; $hexStr = bin2hex($text); echo $hexStr.PHP_EOL; $text = hex2bin($hexStr); echo $text.PHP_EOL;
Leave a Comment
Cancel reply