cose che mi servonoCome risolvere il problema - si prega di installare l'estensione "aeroporto internazionale" per la capacità di localizzazione completa
- sto implementando simbolo di valuta utilizzando symfony.
- Ho fatto riferimento a questo collegamento: http://symfony.com/doc/current/components/intl.html.
Il codice ho implementato:
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');
Errore:
The Symfony\Component\Intl\Locale\Locale::setDefault() is not implemented. Please install the "intl" extension for full localization capabilities.
500 Internal Server Error - MethodNotImplementedException
configurazione del sistema operativo:
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=13.04
DISTRIB_CODENAME=raring
DISTRIB_DESCRIPTION="Ubuntu 13.04"
NAME="Ubuntu"
VERSION="13.04, Raring Ringtail"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 13.04"
VERSION_ID="13.04"
HOME_URL="http://www.ubuntu.com/"
SUPPORT_URL="http://help.ubuntu.com/"
BUG_REPORT_URL="http://bugs.launchpad.net/ubuntu/"
- ho fatto riferimento questo link per l'installazione intln http://php.net/manual/en/intl.setup.php.
Quale sistema operativo (in caso di Linux, comunicaci la distribuzione) corri? – DonCallisto
Ho aggiornato di configurazione della lista dei pacchetti – user2818060