PHP 8.5.0 Alpha 1 available for testing

Instalación

--enable-intl activará la extensión de manera integrada durante la compilación.

Si la biblioteca ICU está instalada en un directorio no estándar, puede ser necesario especificar su ubicación mediante la variable de entorno LD_LIBRARY_PATH, para que el compilador dinámico pueda encontrarla:

$ export LD_LIBRARY_PATH=/opt/icu/lib

De lo contrario, si PHP e ICU están instalados en sus directorios por defecto, entonces no se requieren opciones particulares para configure.

add a note

User Contributed Notes 4 notes

up
5
Saurabh
2 years ago
For amazon nginx server (CentOs), try the following:

sudo yum install libicu-devel
sudo yum install php-intl
up
2
daniel at danielphenry dot com
10 years ago
To install on windows uncommenting the dll in php.ini is not enough you also need to include several other libraries in your system path (not user path). Found these details here: http://stackoverflow.com/a/6086991/819883
up
-3
jltupac at hotmail dot com
12 years ago
Ubuntu:
sudo apt-get install php5-intl
up
-3
Anonymous
2 years ago
ArchLinux:

pacman -S icu php-intl
To Top