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

时间:2012-07-16 17:12:36

标签: zend-framework2 beta

我刚按照给定的说明安装了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

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

  

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

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

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

1 个答案:

答案 0 :(得分:51)

您需要安装intl PHP扩展程序。

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

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