PHP Operations (Delete, extract, add) Zip file method detailed _php Tips

Source: Internet
Author: User
Tags ziparchive

PHP read the zip file (delete file, extract file, add File) instance

Extract files from a zip compressed file

Copy Code code as follows:

<?php
/*
PHP extracts files from zip compressed files
*/
$zip = new Ziparchive;
if ($zip->open (' jquery up and down scrolling focus diagram code. zip ') = = TRUE) {//Chinese file name to use ANSI encoded file format
$zip->extractto (' foldername ');//Extract All Files
$zip->extractto ('/my/destination/dir/', Array (' pear_item.gif ', ' testfromfile.php '));//extract part of File
$zip->close ();
echo ' OK ';
} else {
Echo ' failed ';
}
?>

Delete a file from a Zip compressed file

Copy Code code as follows:

<?php
/*
PHP deletes files from a zip compressed file
*/
$zip = new Ziparchive;
if ($zip->open (' ajaxupload.zip ') = = TRUE) {
$zip->deletename (' file.txt ');//delete file
$zip->deletename (' testdir/');//Delete folder
$zip->close ();
echo ' OK ';
} else {
Echo ' failed ';
}
?>

Add a file to a Zip compressed file

Copy Code code as follows:

<?php
/*
PHP adds a file to the zip compressed file
*/
$zip = new Ziparchive;
if ($zip->open (' ajaxupload.zip ') = = TRUE) {//ajaxupload.zip is an existing zip file, note that the Chinese file name should pay attention to the encoding problem
$zip->addfile (' 33.xml ');//Add a new file
$zip->close ();
echo ' OK ';
} else {
Echo ' failed ';
}
?>

The above is the entire content described in this article, I hope to understand the PHP operation of the zip file can help.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.