The solution to the problem that php_intl.dll cannot find the specified module: first copy the dll required by "php_intl.dll" to the bin directory of apache; then add "extension=php_intl." to "php.ini". dll"; finally restart apache.
Recommended: "PHP Video Tutorial"
php intl module failed to load
Configuring the php_intl module always fails to load?
First, copy the dll required by php_intl.dll to the bin directory of apache, that is, the files under the php directory (all dlls of icu*.dll):
icudt36.dll icuin36.dll icuio36.dll icule36.dll iculx36.dll icutu36.dll icuuc36.dll
Copy to apache/ under the bin directory.
Then, add a line extension=php_intl.dll to php.ini.
Finally, restart apache to use it normally.
Or modify the environment variable (window Pause Break key combination) and add the path to php in Path.
The above is the detailed content of What should I do if php_intl.dll cannot find the specified module?. For more information, please follow other related articles on the PHP Chinese website!