php的mbstring扩展如果没有安装会导致一些问题,例如登陆phpMyAdmin的时候会提示没字符串编码和字符串处理库
php_mbstring,有些程序中会用到mb_substr函数没有php的mbstring扩展当这些程序运行的时候通常会提示“Fatal
error: Call to undefined function
mb_substr()”,对于第二个问题可以用另一篇文章“mb_substr修正函数”解决。
但是如果你有自己的服务器或者vps的权限还是安装php的mbstring扩展好,下面是安装步骤,很简单:
SSH连接之后
查看源代码打印帮助1 yum -y install php-mbstring
然后编辑你的php.ini文件添加
查看源代码打印帮助1 extension=mbstring.so
最后重启httpd服务
查看源代码打印帮助1 service httpd restart
完成。
from()
阅读(1902) | 评论(0) | 转发(0) |