启动apache, 出现The program can’t start because php_mbstring.dll is missing from your computer错误

启动机器时候自动启动apache,出现了以下错误

`Error Message: httpd.exe - System Error

The program can’t start because php_mbstring.dll is missing from your computer. Try reinstalling the program to fix this problem.` And i’ve verified the file is there and the version is correct.

Also another error was: PHP Warning: PHP Startup: Unable to load dynamic library ‘F:/AppServ\php5\ext\p hp_exif.dll’ – The specified module could not be found.

Anyway thanks to wez’s solution here, i fixed it.

在php.ini里面 extension=php_exif.dll 是在这句之前 extension=php_mbstring.dll

将两行位置对换,将php_mbstring.dll放到php_exif.dll后面 extension=php_mbstring.dll extension=php_exif.dll