GMgKe586q6suSQnyqZLlGCooeWM

Pages

Search

Wednesday, March 9, 2011

PHP - Create A Zip File

<?php
    
$zip = new ZipArchive();

if(!$zip->open('poo.zip', ZIPARCHIVE::CREATE) ){
    echo "Could create zip file!";
}

$files = array(
    'pi.bmp',
    'index.php'
    
);

foreach($files as $value){
    $zip->addFile($value);
}


$zip->close();

?>
Share/Bookmark

No comments:

Post a Comment