致命错误:ZF2 beta5骨架应用程序找不到类'Locale'

问题描述 投票:14回答:1

我按照给定的说明安装了ZF2 beta5 application

$ git clone git://github.com/zendframework/ZendSkeletonApplication.git ./
Cloning into '.'...
remote: Counting objects: 1494, done.
remote: Compressing objects: 100% (660/660), done.
remote: Total 1494 (delta 681), reused 1373 (delta 581)
Receiving objects: 100% (1494/1494), 397.42 KiB | 357 KiB/s, done.
Resolving deltas: 100% (681/681), done.

$ php composer.phar install
Installing dependencies
  - Installing zendframework/zendframework (dev-master)
    Cloning d6b0afe61149c6d0669743aab5c73285c42cd0db

zendframework/zendframework suggests installing doctrine/common (Doctrine\Common >=2.1 for annotation features)
Writing lock file
Generating autoload files

当我访问该应用程序时,我收到以下错误:

致命错误:第220行的./vendor/zendframework/zendframework/library/Zend/I18n/Translator/Translator.php中找不到类“区域设置”

我没有尝试按照建议安装Doctrine(因为我最后不想使用Doctrine)。

有人知道如何解决这个问题吗?

zend-framework2 beta
1个回答
51
投票

您需要安装intl PHP扩展。

对于基于APT的系统,请尝试:sudo apt-get install php5-intl 对于基于YUM的系统,请尝试:sudo yum install php-intl 对于OS X,请从this article开始,但请检查您拥有的PHP版本并下载正确的源代码。

您可能需要在之后重新启动PHP或Web服务器。

© www.soinside.com 2019 - 2024. All rights reserved.