[PHP]call to undefined function mb_convert_encoding

Windows下解决

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

Linux下解决

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

    1
    
    yum install php-mbstring
    
  2. 之后,修改 /etc/php.ini 文件,在里面加一句:

    1
    
    extension=mbstring.so
    
  3. 保存后重启 httpd 服务:

    1
    
    service httpd restart
    
Licensed under CC BY-NC-SA 4.0