PHP ZIP file download

后端 未结 7 1316
一生所求
一生所求 2020-12-17 05:51

Here is a code which downloads attachment files from the an imap server. Almost all file types (pdf, doc, xls, etc) are being downloaded correctly, where as some zip files g

7条回答
  •  被撕碎了的回忆
    2020-12-17 06:34

    The culprit was imap_base64. It was not decoding the data correctly. I replaced it with base64_decode as follows and the code worked fine.

    $body = base64_encode($data);
    

提交回复
热议问题