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

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

哪个抛出异常



我该如何解决这个问题,USDGBP 都可以工作。这与设置正确的语言环境有关吗?

最佳答案

我认为您需要将语言环境传递给 Zend_Currency,试试这个。

$currency = new Zend_Currency('bg_BG');

关于php - Zend 框架 - 找不到 'LEV' 货币,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14437981/

10-09 09:02