Call to undefined function mb_detect_encoding()错误的处理方法

来源:互联网 发布:伊藤润二的漫画 知乎 编辑:程序博客网 时间:2024/05/17 07:37
call to undefined function mb_convert_encoding in。。。

在网上找了一些解决方法,基本上都是windows下的php解决方法。

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

linux解决方法

首先安装 php-mbstring库文件:

yum install php-mbstring

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

extension=mbstring.so

保存后重启httpd服务。

service httpd restart


有可能要重新编译安装php:
# ./configure --enable-mbstring
0 0