PHP bin2hex
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); }
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); }