分类目录
-
最近文章
Recent Comments
- 正在加载...
标签
centos command css debian Desktop eAccelerator Eagles Eminem FireFox freebsd godaddy Godaddy域名优惠码 google hostname Lady Antebellum linkinpark linux live Love The Way You Lie mbstring mb_substr mp3 Music mv namecheap namecheap coupon code namecheap优惠码 namecheap最新优惠码 need you now payoneer photo php php_mbstring Picture rihanna the cure wordpress zeus 便宜vps 创意广告 域名优惠码 富士康 电影 翻墙 闫凤娇链接表
Tag Archives: php_mbstring
Centos下安装php的mbstring扩展
php的mbstring扩展如果没有安装会导致一些问题,例如登陆phpMyAdmin的时候会提示没字符串编码和字符串处理库php_mbstring,有些程序中会用到mb_substr函数没有php的mbstring扩展当这些程序运行的时候通常会提示“Fatal error: Call to undefined function mb_substr()”,对于第二个问题可以用另一篇文章“mb_substr修正函数”解决。 但是如果你有自己的服务器或者vps的权限还是安装php的mbstring扩展好,下面是安装步骤,很简单: SSH连接之后 yum -y install php-mbstring 然后编辑你的php.ini文件添加 extension=mbstring.so 最后重启httpd服务 service httpd restart 完成。
mb_substr修正函数
不支持mb_substr函数的环境中使用了mb_substr函数会出现“Fatal error: Call to undefined function mb_substr()”的提示,下面的函数是定义的替代mb_substr的函数,作用是一样的,用于不支持mb_substr的地方。 // Patch in multibyte support if (!function_exists(‘mb_substr’)) { function mb_substr($str, $start, $len = ”, $encoding="UTF-8"){ $limit = strlen($str); for ($s = 0; $start > 0;–$start) {// found the real start if ($s >= … Continue reading