Funkcja hex2bin
Kod
function hex2bin($hex) {
$str="";
for($i=0;$i<strlen($hex);$i=$i+2) {
$str.=chr(hexdec(substr($hex,$i,2)));
} return $str;
}
$str="";
for($i=0;$i<strlen($hex);$i=$i+2) {
$str.=chr(hexdec(substr($hex,$i,2)));
} return $str;
}
i nie wiem co z tym zrobić pomóżcie