phpMyAdmin php-mbstring没有安装
Posted by Kevin | Filed under PHP | 2009-01-15
问题描述:当配置好LAMP后,没有发现 php 的扩展设置mbstring, 而当前系统好像在使用宽字符集。没有 mbstring 扩展的 phpmyadmin 不能正确识别字符串,可能产生不可意料的结果.
解决办法:上网查了一下都说修改php.ini:
;extension=php_mbstring.dll
去掉前面的分号,重启WEB服务器
yum list | grep php-mbstring
php-mbstring.i386 5.2.6-jason.1 utterramblings
发现php-mbstring没有安装,于是yum -y install php-mbstring
问题解决了。

