Return to Snippet

Revision: 17438
at September 4, 2009 15:34 by dygor


Initial Code
function string_to_hex($input)
    {
    return(bin2hex($input));
    }


function hex_to_string($input)
    {
    return(pack("H*",$input));
    }

Initial URL


Initial Description
convert a string to it's hex representation and back

Initial Title
Str To Hex / Hex To Str

Initial Tags
convert

Initial Language
PHP