function hex2bin($data) { $len = strlen($data); for($i=0; $i<$len; $i+=2) { $newdata .= pack("C",hexdec(substr($data,$i,2))); } return $newdata; }