CodeIgniter Forums
How to use ZipArchive - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28)
+--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30)
+--- Thread: How to use ZipArchive (/showthread.php?tid=77752)



How to use ZipArchive - what2see - 10-15-2020

Hi, I'm trying to use ZipArchive in my CI4 project. It is already enabled in my php but still give me error. Can someone tell me how to use this in CI4? Thank you.


RE: How to use ZipArchive - includebeer - 10-17-2020

What is ZipArchive? Post your code...


RE: How to use ZipArchive - InsiteFX - 10-18-2020

First you need to read this:

PHP.NET - The ZipArchive class

Then in your controller you need to do this before using it.

PHP Code:
$zip = new \ZipArchive(); 



RE: How to use ZipArchive - captain-sensible - 10-18-2020

a possible alternative might be to look https://packagist.org/?query=zip

(10-18-2020, 11:44 AM)InsiteFX Wrote: First you need to read this:

PHP.NET - The ZipArchive class

Then in your controller you need to do this before using it.

PHP Code:
$zip = new /ZipArchive(); 
should thst not be a "\"


RE: How to use ZipArchive - InsiteFX - 10-18-2020

Thanks I corrected it long day here