Advertisement
Guest User

Untitled

a guest
Jul 31st, 2014
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. private function unzipFiles()
  2. {
  3. $this->fileNames = array("file1.zip");//this comes dynamically
  4. $this->terminalPrint("Starting to unzip files...");
  5. foreach($this->fileNames as $file)
  6. {
  7. $this->terminalPrint("Unzipping $file");
  8. ..... //other operations
  9. }
  10. $this->terminalPrint("Finished uzipping files...");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement