当我第一次安装symfony应用程序时,它大声失败并显示错误:
HTTP 500 Internal Server Error
Attempted to load class "IntlTimeZone" from the global namespace.
Did you forget a "use" statement?
如何解决?
可以通过安装缺少的php模块来修复。 在我的例子中,带有php 7.2的ubuntu 16:
sudo apt-get install php7.2-intl
如果使用窗口和作曲家,您可以尝试
composer require twig/extensions
这对我来说是有用的。