This article mainly introduces the solution for php to use ZipArchive to prompt Fatalerror: ClassZipArchivenotfoundin. It is a problem that occurs frequently when ZipArchive is used. For more information, see
This article mainly introduces the solution for php to use ZipArchive to prompt Fatal error: Class ZipArchive not found in. It is a problem frequently encountered when ZipArchive is used. For more information, see
This example describes how to use ZipArchive to prompt Fatal error: Class ZipArchive not found in php. Share it with you for your reference. The details are as follows:
ZipArchive is a built-in compression and decompression function of php. If we use new ZipArchive to create a zip file today, the following error occurs: Fatal error: Class ZipArchive not found in, if you are interested, let's take a look at the solution.
The test code is as follows:
The Code is as follows:
// PHP decompress the file (zip)
Function unzip_file ($ file, $ destination ){
$ Zip = new ZipArchive ();
// Open the compressed file
If ($ zip-> open ($ file )! = TRUE ){
Die ('could not open archive ');
}
// Create a file
$ Zip-> extrac.pdf ($ destination );
$ Zip-> close ();
Echo 'successfully ';
}
Unzip_file ("htdocs.zip", "wenjianming ");
Detected During execution
Fatal error: Class 'ziparchive 'not found in E: wwwqqdown. php on line 63
I think this is not undefined, So I search Baidu for it as follows:
In Windows, the solution is:
1. In the php. ini file, remove the Semicolon ";" before extension = php_zip.dll;
Restart the Apache server. We can try again.
Supplement:
For a linux system, refer to the following method:
There is no php_zip.dll file in Linux.
You need to recompile the php zip module. The installation method is as follows:
The Code is as follows:
Cd/usr/src
Wget
Tar-zxvf zip
Cd zip-1.x.x
Phpize
./Configure
Make
Sudo make install
The root permission may be required when you use the make install command. Therefore, we recommend that you use sudo to run the command. After installation, the location of zip. so is displayed. Record it, for example,/usr/local/lib/php/extensions/zip. so.
2. Use root permission to modify php. ini (usually in the/usr/local/lib/folder, but depending on the initial installation of php, you can view it through phpinfo ):
Add extension =/usr/local/lib/php/extensions/zip. so, and change zlib. output_compression = Off TO zlib. output_compression = On in the php. ini file;
3. Do not forget to restart Apache: apachectl restart;
Note: some friends on the website say zlib. change output_compression = Off TO zlib. output_compression = On; I have not operated On php in windows. INI file is not seen, but it can indeed generate or decompress the file.
I hope this article will help you with PHP programming.