John Does Legacy
John Does Legacy

Reputation: 1519

Php install zip

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

Answers (1)

William J.
William J.

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

Related Questions