无法使用Zend的\\ \\的I18n查看\\ \\辅助类CurrencyFormat(Unable

2019-10-20 22:15发布

我试图实现CurrencyFormat助手,但是当我实例和CurrencyFormat的应用提高了exeption的对象:

$var new CurrencyFormat();

File:
/site/vendor/zendframework/zend-i18n/Zend/I18n/View/Helper/CurrencyFormat.php                    :63
Message:
Zend\I18n\View\Helper component requires the intl PHP extension

在我的控制,我包括图书馆

use Zend\I18n\View\Helper\CurrencyFormat;

我想我需要在composer.json或配置文件添加的东西?

谢谢!

Answer 1:

该错误是相当清楚的。 该组件需要国际PHP扩展 。 这东西是(通常)与PHP捆绑的,需要你的服务器上启用。



文章来源: Unable to use Zend\\I18n\\View\\Helper\\CurrencyFormat class