Heim > Artikel > Backend-Entwicklung > Wie installiere ich das Zip-Modul in PHP? (Methodeneinführung)
php install zip module
Zip-Erweiterung für PHP installieren
wget http://pecl.php.net/get/zip-1.13.5.tgz tar -zvxf zip-1.13.5.tgz cd zip-1.13.5 /home/xxx/php/bin/phpize
Fehler aufgetreten:
Cannot find autoconf. Please check your autoconf installation and the $PHP_AUTOCONF environment variable. Then, rerun this script.
Lösung:
yum install m4 yum install autoconf
Neuinstallation:
/home/xxx/php/bin/phpize ./configure --with-php-config=/home/xxx/php/bin/php-config make make install
Ändern Sie dann php.ini und fügen Sie hinzu:
extension=zip.so
Starten Sie Apache neu und prüfen Sie, ob phpinfo erfolgreich installiert wurde
Empfohlene verwandte Tutorials: „PHP-Tutorial“
Das obige ist der detaillierte Inhalt vonWie installiere ich das Zip-Modul in PHP? (Methodeneinführung). Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!