In this article, I explained about “How to handle zip files” in yii framework. I used this code to my project for handling the zip files. Here i added source code to create, Extract, Download and Delete zip files in yii framework.Create Zip Files in YiiExtract Zip Files in YiiDownload Zip Files in YiiDelete Zip Files in YiiCreate Zip Files in Yii <?php public function actionCreateZip(){ $zip=new ZipArchive(); $destination=DIRDetails."/filename.zip"; if($zip->open($destination,ZIPARCHIVE::CREATE) […]... Read More »