简体   繁体   中英

PHP Startup:Unable to load dynamic library 'php_intl.dll'- The specified module could not be found

I have downloaded wamp server from http://www.wampserver.com/en/ in my Windows 8 laptop which is a 32 bit system. On clicking on the pink wamp server icon on the desktop the i get the following error:

PHP Startup:Unable to load dynamic library 'c:/wamp/bin/php/php5.5.12/ext/php_intl.dll'- The specified module could not be found.

what should I do?

I have already tried uninstalling and re installing the program several times, but the same problem persists.

copy the icu*.dll files to your apache's bin directory. If it is not working in bin directory then copy it in you apache's directory.

OR

You can add c:/wamp/bin/php/php5.5.12/ in your system's PATH

I was getting the same error on Mac. I installed PHP INTL using HomeBrew.

For php 7.1 install INTL with this terminal command:

brew install php71-intl

Activate intl extension in php.ini. Use php --ini to check the configuration path.

intl.default_locale = en_utf8

intl.error_level = E_WARNING

intl.use_exceptions = 0

我在系统 PATH 环境中添加了 PHP 文件夹的路径,它帮助了我。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM