Piwik\Site::getCurrencyList PHP 메소드

getCurrencyList() 공개 정적인 메소드

Returns the list of all known currency symbols.
또한 보기: Piwik\Intl\Data\Provider\CurrencyDataProvider::getCurrencyList()
사용 중단: Use Piwik\Intl\Data\Provider\CurrencyDataProvider instead.
public static getCurrencyList ( ) : array
리턴 array An array mapping currency codes to their respective currency symbols and a description, eg, `array('USD' => array('$', 'US dollar'))`.
    public static function getCurrencyList()
    {
        /** @var CurrencyDataProvider $dataProvider */
        $dataProvider = StaticContainer::get('Piwik\\Intl\\Data\\Provider\\CurrencyDataProvider');
        return $dataProvider->getCurrencyList();
    }

Usage Example

예제 #1
0
 public static function getCurrencyList()
 {
     return Site::getCurrencyList();
 }
All Usage Examples Of Piwik\Site::getCurrencyList