How to solve the issue - please install the “intl” extension for full localization capabilities
What i Need I'm implementing currency symbol using symfony. I have referred this link : http://symfony.com/doc/current/components/intl.html . The code i have implemented: use Symfony\Component\Intl\Intl; \Locale::setDefault('en'); $currencies = Intl::getCurrencyBundle()->getCurrencyNames(); $currency = Intl::getCurrencyBundle()->getCurrencyName('INR'); $symbol = Intl::getCurrencyBundle()->getCurrencySymbol('INR'); $fractionDigits = Intl::getCurrencyBundle()->getFractionDigits('INR'); $roundingIncrement = Intl::getCurrencyBundle()->getRoundingIncrement('INR'); Error: The Symfony\Component\Intl