我是php新手,有问题请教大家

我是php新手,有问题请教大家

我想做一个网络书签网站,从网上下了一个Scuttle 0.7.2的php程序,在本地服务器测试返回如下错误,请高手帮我指点一下该如何解决,错误信息如下:

Warning: setlocale() [function.setlocale]: Passing locale category name as string is deprecated. Use the LC_* -constants instead. in D:\Apache2\www\scu\includes\php-gettext\gettext.inc on line 131

Warning: setlocale() [function.setlocale]: Invalid locale category name LC_MESSAGES, must be one of LC_ALL, LC_COLLATE, LC_CTYPE, LC_MONETARY, LC_NUMERIC, or LC_TIME. in D:\Apache2\www\scu\includes\php-gettext\gettext.inc on line 131

Fatal error: Call to undefined function mb_detect_encoding() in D:\Apache2\www\scu\includes\php-gettext\gettext.inc on line 101

在..\includes\php-gettext\gettext.inc on line 131 里
将$ret = setlocale($category, $locale);
直接改为@$ret = setlocale($category, $locale);

其实这是PHP版本问题

Fatal error: Call to undefined function mb_detect_encoding() in D:\Apache2\www\scu\includes\php-gettext\gettext.inc on line 101

这个问题怎么解决的?

没有加载 php_mbstring.dll
把php5\ext目录下的php_mbstring.dll文件复制到c:\windows\system32下
打开c:\windows\php.ini文件
查找
;extension=php_mbstring.dll
把前面的分号去掉
记得重启apache,就可以了
如履薄冰