How to solve the issue - please install the “intl” extension for full localization capabilities

前端 未结 5 1138
不思量自难忘°
不思量自难忘° 2020-12-18 21:05

What i Need

  • I\'m implementing currency symbol using symfony.
  • I have referred this link : http://symfony.com/doc/current/components/intl.html.
相关标签:
5条回答
  • 2020-12-18 21:29

    Extending the Answer by Michael Sivolobov, for php7 on debian 9 /stretch

    sudo apt-get install php7.0-intl
    

    or simply

    sudo apt-get install php-intl
    

    then

    sudo service apache2 restart
    

    Thanks!

    0 讨论(0)
  • 2020-12-18 21:40

    You need just put one line to the terminal:

    sudo apt-get install php5-intl
    
    0 讨论(0)
  • 2020-12-18 21:42

    Open XAMPP server. click on Apache config button And open php.ini file. Under php.ini file search intl And uncommented out the line. And restart the server. Hope this would be helpful.

    0 讨论(0)
  • 2020-12-18 21:49

    If you are using XAMPP on windows here is how:

    open for example c:\xampp\php\php.ini and remove the semi colon ";" in front of "extension=php_intl.dll" save the file and restart apache.

    That will get solve the error message.

    Done.

    0 讨论(0)
  • 2020-12-18 21:53

    When I tried to install intl on Ubuntu 16.04 with:

    sudo apt-get install php5-intl
    

    I've got an error like:

    error: Unable to detect ICU prefix or no failed. Please verify ICU install prefix and make sure icu-config works. ERROR: `/tmp/pear/temp/intl/configure --with-php-config=/usr/bin/php-config --with-icu-dir=DEFAULT' failed

    In order to solve the problem I needed to install:

    sudo apt-get install libicu-dev
    

    and after that install

    sudo apt-get install php5-intl
    

    That solved my problem.

    0 讨论(0)
提交回复
热议问题