Reputation: 1519
How do I install zip in my php? The documentation just said:
Windows users need to enable php_zip.dll inside of php.ini in order to use these functions.
I searched in my php.ini for php_zip.dll but could not find it.
Thus I searched for tutorials who tell me how to install that .dll but could not found any.
Upvotes: 2
Views: 12440
Reputation: 1584
Download the extension from: http://pecl.php.net/package/zip/1.12.4/windows
Edit you php.ini file and add the line
extension=php_zip.dll
then restart your web server.
Upvotes: 2