我无法使用最后一个php5.6在我的Ubuntu VM上安装php-zip。
找不到清楚的东西。
我仍然得到Apache错误:
PHP Fatal error: Class 'ZipArchive' not found in /var/www/uta/system/library/PHPExcel/PHPExcel/Writer/...
由于
答案 0 :(得分:165)
尝试
sudo apt-get install php-zip
或sudo apt-get install php5.6-zip
然后,您可能必须重新启动Web服务器。
sudo service apache2 restart
或sudo service nginx restart
如果您在centos或fedora OS上安装,那么使用yum代替apt-get。例如: -
sudo yum install php-zip
或
sudo yum install php5.6-zip
和
sudo service httpd restart