在 Ubuntu 上的 php 5.6 上安装 php-zip
我无法在我的 Ubuntu VM 上安装 php-zip 以及最后一个 php5.6。
找不到任何清晰的东西。
我仍然得到那个Apache错误:
PHP Fatal error: Class 'ZipArchive' not found in /var/www/uta/system/library/PHPExcel/PHPExcel/Writer/...
谢谢
我无法在我的 Ubuntu VM 上安装 php-zip 以及最后一个 php5.6。
找不到任何清晰的东西。
我仍然得到那个Apache错误:
PHP Fatal error: Class 'ZipArchive' not found in /var/www/uta/system/library/PHPExcel/PHPExcel/Writer/...
谢谢
尝试
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