Home  >  Article  >  Backend Development  >  A brief analysis of the solution to the error php_mbstring.dll not found when running php.exe under Dos_PHP Tutorial

A brief analysis of the solution to the error php_mbstring.dll not found when running php.exe under Dos_PHP Tutorial

WBOY
WBOYOriginal
2016-07-21 15:02:27799browse

Move extension=php_mbstring.dll before extension=php_exif.dll in the php.ini file.

Because exif calls mbstring, mbstring must be in front.

php_exif.dll, EXIF ​​function library, requires php_mbstring.dll.

And in php.ini, php_exif.dll must be loaded after php_mbstring.dll.

If not, check whether the default extension_dir value in php.ini is extension_dir = "./", and change this item to extension_dir = "ext/".

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/327919.htmlTechArticleMove extension=php_mbstring.dll before extension=php_exif.dll in the php.ini file. Because exif requires Call mbstring, so mbstring must be in front. php_exif.dll, EXIF ​​function library...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn