I'm receiving a Zip file encoded to Base64 on a JSON Callback How can I save that as a Zip file? I know how I can base64_decode that but I'm having an hard time saving that as a normal Zip file. I'm working with PHP
Thank you for your help!
EDIT
It is solved. I just need to base64_decode the string and save it as a temp.zip file and then extract the content from that temp file. What I was trying to do was extract the content directly from the base64_decoded string which I guess it's not possible.