Hello, I need to extract all the files (and folders if any) contained in a zip file through a PHP script.
Does anybody know how to do that?
Thanks! 😉
if you are in unix box, try this
<?php if(system("unzip filename.zip")) echo "yes"; ?>
Thanks 😉