Guest User

Untitled

a guest
Jan 24th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <?php
  2. $zip = zip_open($newfile);
  3. if ($zip) {
  4. $counter = 0;
  5. while ($zip_entry = zip_read($zip)) {
  6. $counter++;
  7. $filename = zip_entry_name($zip_entry);
  8. echo $counter . "-" . $filename . "<br/>";
  9. }
  10. zip_close($zip);
  11. }
Add Comment
Please, Sign In to add comment