Dealing with compressed files in PHP

0

I need to solve the following problem with PHP: the user will upload a zip file containing hundreds (possibly thousands) of files. I must unzip these files in a certain directory and after that I must iterate over the name (need the name!) Of each uncompressed file to perform a set of operations on that file. Does anyone know of any PHP tools to handle this kind of problem?

    
asked by anonymous 16.04.2016 / 19:57

1 answer

1

Extract files in PHP: link

Get content from a directory: link

You can also use commands from your system, if you prefer: link

    
16.04.2016 / 21:20