php – Zend Framework – 未找到’LEV’货币

我有以下保加利亚货币’lev’的代码;

try
{
    $currency = new Zend_Currency("lev");
}
catch(Exception $e)
{
    echo $e->getMessage();
    die;
}

这引发了异常

Currency ‘lev’ not found

我怎样才能解决这个问题,美元和英镑都能奏效.这与设置正确的Locale有关吗?

最佳答案 我认为你需要将一个语言环境传递给Zend_Currency,试试这个.

$currency = new Zend_Currency('bg_BG');
点赞