【介绍】
php的mbstring扩展如果没有安装会导致一些问题。
例如:当登录phpMyAdmin的时候会提示没字符串编码和字符串处理库 php_mbstring,有些程序中会用到mb_substr函数没有php的mbstring扩展当这些程序运行的时候通常会提示“Fatal error: Call to undefined function mb_substr()”,对于第二个问题可以用另一篇文章“mb_substr修正函数”解决。
【安装】
yum -y install php-mbstring
编辑php.ini文件,添加:
extension=mbstring.so
重启httpd服务。