php - Hexadecimal String to binary PDF file -


i have hexadecimal value pdf getting web service trying save locally using php. below snippet of value.

i have tried achieve using pack in php either receive error "x" not valid or pdf not save correctly. empty or says error opening.

   partial value is:     "0x255044462d312e340a0a322030206f626a0a3c3c2f5479" 

i have tried following unsuccessfully after searching google time:

   $pack = pack("h*", $string);      file_put_contents('my.pdf', $pack);     header('content-type: application/pdf');     header('content-disposition: attachment; filename="my.pdf"');     echo $pack; 

can tell me doing incorrectly? realize not entire pdf cant put entire online.

thanks help


Comments

Popular posts from this blog

user interface - Python attempting to create a simple gui, getting "AttributeError: 'MainMenu' object has no attribute 'intro_screen'" -

jquery - Common JavaScript snippet to share files on Google Drive, Dropbox, Box.net or SkyDrive -

Android Gson.fromJson error -