advanced code snippet search
dygor on 09/04/09
String convert hexadecimal
09/04/09 03:34pm
1 person have marked this snippet as a favorite
umang_nine
convert a string to it's hex representation and back
function string_to_hex($input) { return(bin2hex($input)); } function hex_to_string($input) { return(pack("H*",$input)); }
Report this snippet Tweet
Comment:
You need to login to post a comment.