codygoodman Posted August 15, 2007 Share Posted August 15, 2007 I know the function to convert ASCII characters to hex is bin2hex() is there a function that does the opposite? Thanks! Quote Link to comment https://forums.phpfreaks.com/topic/65151-is-there-a-function-to-convert-hexadecimal-to-ascii/ Share on other sites More sharing options...
cooldude832 Posted August 15, 2007 Share Posted August 15, 2007 I don't know if there is, but try reading that function and producing it in reverse Quote Link to comment https://forums.phpfreaks.com/topic/65151-is-there-a-function-to-convert-hexadecimal-to-ascii/#findComment-325238 Share on other sites More sharing options...
MadTechie Posted August 15, 2007 Share Posted August 15, 2007 try $data = pack("H" . strlen($hex), $hex); Quote Link to comment https://forums.phpfreaks.com/topic/65151-is-there-a-function-to-convert-hexadecimal-to-ascii/#findComment-325245 Share on other sites More sharing options...
AndyB Posted August 15, 2007 Share Posted August 15, 2007 I don't know if there is, but try reading that function ... http://ca.php.net/manual/en/function.bin2hex.php#71356 and pay special attention to the second example in the user notes Quote Link to comment https://forums.phpfreaks.com/topic/65151-is-there-a-function-to-convert-hexadecimal-to-ascii/#findComment-325246 Share on other sites More sharing options...
cooldude832 Posted August 15, 2007 Share Posted August 15, 2007 andy saved you some work, of course it would of been fun to try and figured it out on your own, but either way you got a solution. Quote Link to comment https://forums.phpfreaks.com/topic/65151-is-there-a-function-to-convert-hexadecimal-to-ascii/#findComment-325254 Share on other sites More sharing options...
codygoodman Posted August 16, 2007 Author Share Posted August 16, 2007 Thanks Guys! Quote Link to comment https://forums.phpfreaks.com/topic/65151-is-there-a-function-to-convert-hexadecimal-to-ascii/#findComment-325264 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.