我使用拉鍊laravel 5.3創建壓縮文件, 得到錯誤的,laravel錯誤:你的PHP版本不支持ZIP編譯
Error: Your PHP version is not compiled with zip support
PHP版本:5.6
chmod($withdrawalFilePath, 0777);
$files = glob($withdrawalFilePath . '/*');
Zipper::make($withdrawalFilePath . '/Withdrawal.zip')->add($files)->close();
chmod($withdrawalFilePath . '/Withdrawal.zip', 0777);
也許這可能有助於https://community.apachefriends.org/f/viewtopic.php?f=17&t=52369 –
https://pecl.php.net/package/zip –
你應該安裝php-zip延期。你可以在Linux上用'apt-get install php7.0-zip'或'apt-get install php-zip'來做到這一點。 –