首页 » Web开发 » 正文

[PHP]call to undefined function mb_convert_encoding

Windows下解决:

在php.ini中开启mbstring函数库:去掉extension=php_mbstring.dll前面的分号;

 

Linux下解决:

  1. 首先安装 php-mbstring库文件:

yum install php-mbstring

  1. 之后,修改/etc/php.ini文件,在里面加一句

extension=mbstring.so

  1. 保存后重启httpd服务。

service httpd restart

发表评论