PHP bin2hex

This entry was posted by on Monday, 27 October, 2008 at

In the hope to serve more people the pain of fiddling with this, I’ll keep some programming-snipplets in english.

Situation: you have HEX codes and need binary

Solution:

function hex2bin ($hex) {
    return pack("H*", $hex);
}

Leave a Reply