症状:
尝试运行在 Linux 上安装 Archive_Zip 0.1.1 后使用 ZipArchive 类的脚本服务器上,用户可能会遇到以下致命错误:
Fatal error: Class ZipArchive not found in ...
原因:
发生此错误是因为 ZipArchive 类需要存在 PHP zip 扩展名。
解决方案:
解决此问题,请按照以下步骤操作:
1.安装 PHP Zip 扩展:
Debian/Ubuntu:
sudo apt update sudo apt install php-zip
2。重新启动网络服务器:
Apache:
sudo systemctl restart apache2
Nginx:
sudo systemctl restart nginx
其他注意:
以上是为什么在 Linux 服务器上安装 Archive_Zip 后出现'Class \'ZipArchive\' Not Found\”错误?的详细内容。更多信息请关注PHP中文网其他相关文章!