Say, if I parse HTTP Accept-Language header with Locale::acceptFromHttp
is there an easy and reliable way to get user's preferred currency based on this locale identifier? Like "USD" for "en-US".
I wish there was a way to do this with PHP intl extension but so far was unable to find my answer in the manual. I saw Zend Framework can do this with Zend_Currency but it's just too bloated for my particular software.
Any other libs or ways of achieving this? Since there must be a lot of locale identifiers a simple switch
is a bit of overkill.