我使用 composer 安装 Zend Framework 2 和其他库。每次在同一路径中重新安装应用程序后,我都必须手动清除 APC(版本 3.1.13)操作码缓存(使用 PHP 5.4.8),否则会出现类似错误
PHP Fatal error: Interface 'Zend\\Mvc\\ApplicationInterface' not found
或者
PHP Fatal error: include(): Cannot redeclare class zend\\eventmanager\\eventscapableinterface
每次安装应用程序后,失败的类都会不断变化。我有apc.stat=1,所以如果我之前在同一路径上部署了应用程序,操作码缓存应该注意到新部署的 php 文件并自动重新编译它们。
我已经在 Github 上与作曲家开发人员讨论了这个问题,并在此处发布了我的 APC 设置:https ://github.com/composer/composer/issues/1662 。我们同意这看起来更像是一个 APC 问题。