在 Ubuntu 上的 php 5.6上安装 php-zip

我不能用最后一个 php5.6在我的 Ubuntu VM 上安装 php-zip。

找不到任何清晰的东西。

我仍然得到那个 Apache 错误:

PHP Fatal error:  Class 'ZipArchive' not found in /var/www/uta/system/library/PHPExcel/PHPExcel/Writer/...

谢谢

216870 次浏览

Try either

  • sudo apt-get install php-zip or
  • sudo apt-get install php5.6-zip

Then, you might have to restart your web server.

  • sudo service apache2 restart or
  • sudo service nginx restart

If you are installing on centos or fedora OS then use yum in place of apt-get. example:-

sudo yum install php-zip or sudo yum install php5.6-zip and sudo service httpd restart