Home  >  Article  >  Backend Development  >  How to read zip files in PHP

How to read zip files in PHP

墨辰丷
墨辰丷Original
2018-05-30 17:15:382469browse

This article mainly introduces the method of PHP reading zip files, and analyzes the related skills of PHP reading zip files in the form of examples. Friends in need can refer to it

The details are as follows:

<?php
$zip = zip_open("111.zip");
if ($zip) {
while ($zip_entry = zip_read($zip)) {
echo "Name: " . zip_entry_name($zip_entry) . "n";
echo "Actual Filesize: " . zip_entry_filesize($zip_entry) . "n";
echo "Compressed Size: " . zip_entry_compressedsize($zip_entry) . "n";
echo "Compression Method: " . zip_entry_compressionmethod($zip_entry) . "n";
if (zip_entry_open($zip, $zip_entry, "r")) {
echo "File Contents:n";
$buf = zip_entry_read($zip_entry, zip_entry_filesize($zip_entry));
echo "$buf\n";
zip_entry_close($zip_entry);
}
echo "n";
}
zip_close($zip);
}
?>

The screenshot of the running effect is as follows:

The above is the entire content of this article, I hope it will be helpful to everyone's study.


Related recommendations:

PHP implements bucket sorting algorithm

PHP null value Detection functions and methods

Detailed explanation of merge sort of PHP sorting algorithm series

The above is the detailed content of How to read zip files in PHP. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn