Home > Article > Backend Development > PHP ziparchive
ZipArchive method in PHP is used to add the file, new directory, and able to read the zip in PHP. ZipArchive is a class rather than a method; ziparchive contains multiple methods; by the use of it, we can perform various operations on the zip in PHP. ZipArchive methods can do multiple operations, which are to add a new file, to add a new directory, to close the archive, to extract the ziparchive content, to open a ziparchive in PHP. In the coming section, we will see in detail how we can use the ziparchive method in PHP.
ADVERTISEMENT Popular Course in this category HIVE - Specialization | 7 Course SeriesStart Your Free Software Development Course
Web development, programming languages, Software testing & others
Now we will discuss the multiple syntaxes for ziparchive in PHP. As I told you, there is no such method as ziparchive in PHP; this is a class instead which contains several ziparchive methods inside it to access the zip and read the zip. Let’s see some syntax for a better understanding of the method see below;
1. To open ziparchive: Below is the syntax
ziparchive->open('your_file_name');
As you can see, we just have to pass the file name which we want to open. Also, these methods can be called by using the ziparchive instance.
2. To close a file: Below is the syntax
ziparchive->close();
As you can see, we just have to call the close method on ziparchive instance to close any file in PHP.
As know, we know that the ziparchive method is used to read the zip in PHP, but ziparchive instead of a class, not a method, but it contains several methods that can be used to perform operations on the ziparchive. So to handle ziparchive, we use ziparchive class in PHP. To use any method, we have to create the instance of ziparchive class, but with the use of it, we can easily call any method. We can perform any operations by using a ziparchive instance like open a file. Close a file, create a new file, create a new directory, read ziparchive content, and so on.
Let’s discuss each method in detail to use them in PHP see below;
To use this all this method, we need to have a ziparchive instance created in our program. After that, only we can call this method to perform any operations on the zip archive in PHP. Let’s see how to create a ziparchive instance in PHP see below;
Example:
$myzip = new ZipArchive();
This is s sample for beginners to use ziparchive in php; we will see some examples in the next section to better understand the ziparchive method in PHP.
In this example, we create one file inside the zip archive; after this, we are closing this file. A sample program for beginners to understand this better.
Code:
<?php echo 'demo for ziparchive method in PHP !!!'; $zip = new ZipArchive; echo 'opening zip file !!'; if ($zip->open('https://cdn.educba.com/path/mydem.zip') === TRUE) { //adding file $zip->addFile('https://cdn.educba.com/path/myzip/demofile.txt', 'mynewdemofile.txt'); //closing file $zip->close(); echo 'file added successfully !!'; echo 'file close successfully !!' } else { echo 'error occured while cerating the file.' echo 'process failed !!' echo 'failed while creation !!'; } ?>
Output:
By using ziparchive methods, we can perform many operations on the ziparchive. This is the class with so many different methods available. With the help of this, we can create a file, directory, delete, open, and close our ziparchive in PHP.
The above is the detailed content of PHP ziparchive. For more information, please follow other related articles on the PHP Chinese website!