GMgKe586q6suSQnyqZLlGCooeWM
Learn To Program
Increase Your Knowlegde and Build Your Skill!
Pages
Home
Me
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();
?>
PHP - Create A Zip File
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment