Home > Article > Backend Development > Solve the problem that phpmyadmin prompts that mbstring is not installed
1.yum install php-mbstring
如果是remi,则yum --enablerepo=remi install php-mbstring
2.vim /etc/php.ini
打开mbstring相关的选项。
[mbstring]
; language for internal character representation.mbstring.http_output = UTF-8
; enable automatic encoding translation according to
; mbstring.internal_encoding setting. Input chars are
; converted to internal encoding by setting this to On.
; Note: Do _not_ use automatic encoding translation for
; portable libs/applications.
; http://php.net/mbstring.encoding-translation
mbstring.encoding_translation = On
以上就介绍了phpmyadmin 提示没有安装mbstring的问题解决,包括了phpmyadmin,string方面的内容,希望对PHP教程有兴趣的朋友有所帮助。