Sample code for 30+ languages & platforms
PHP ActiveX

Decode Base64 to Zip File

See more Base64 Examples

Shows how to decode a baes64 string that is the encoded representation of the bytes that make up a .zip archive. Decodes the base64 and writes the .zip file.

Chilkat PHP ActiveX Downloads

PHP ActiveX
<?php

$success = 0;

$b64 = 'UEsDBBQA ... AAALgQAAAAA';

$zipData = new COM("Chilkat.BinData");
$success = $zipData->AppendEncoded($b64,'base64');
$success = $zipData->WriteFile('qa_output/out.zip');
if ($success != 1) {
    print 'failed to write Zip file.' . "\n";
    exit;
}


?>