英文:
Fatal Error on HeadTitle viewer without I18n\Translator module
问题
在安装Zend Framework 3的骨架后,当我运行应用程序时,出现以下致命错误:
致命错误:方法Zend\View\Helper\HeadTitle::__toString()不得引发异常,捕获Zend\I18n\Exception\ExtensionNotLoadedException:Zend\I18n\Translator组件需要intl PHP扩展,位于C:\xampp\htdocs\sample-crud\module\Application\view\layout\layout.phtml的第0行。
我认为我错过了一些扩展,但我不知道如何解决它?
英文:
Started zend framework 3 by installing the skeleton, when I run the app it crashes giving the fatal error below:-
Fatal error: Method Zend\View\Helper\HeadTitle::__toString() must not throw an exception, caught
Zend\I18n\Exception\ExtensionNotLoadedException: Zend\I18n\Translator component requires the intl PHP
extension in C:\xampp\htdocs\sample-crud\module\Application\view\layout\layout.phtml on line 0
I think I miss some extensions and I dont know how to resolve it?
答案1
得分: 3
消息明确:
> Zend\I18n\Translator 组件需要 intl PHP 扩展
因此,您需要启用intl PHP扩展。
英文:
Message is clear about it:
> Zend\I18n\Translator component requires the intl PHP
extension
So you need to enable intl PHP extension.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论