PHP中Call to undefined function mb_substr()处理方法
程序员文章站
2024-02-15 21:04:34
...
PHP中Call to undefined function mb_substr()处理方法!
最近开发微信扩展功能,用到了mb_substr()函数。系统在windows下测试都是正常的,但是放到aliyun(选用的Centos系统)下面就出现了问题,Call to undefined function mb_substr(),报出这个异常。
很显然,这是调用了没有定义的函数,可是环境都采用yum安装的,Apache和PHP都是自动安装的。怎么会出现这个错误呢?其实PHP本身也是可配置的,安装时候除了必须的扩展库会自动安装上之外,其他的库默认是不会安装的。
解决办法:
yum install php-mbstring 命令安装,安装好后 service httpd restart 重启apache服务器,一切正常!
相关文章
相关视频
推荐阅读
-
php中的Fatal error: Call to undefined function ssh2_connect()有关问题!
-
PHP中Call to undefined function mb_substr()处理方法
-
PHP加密3DES报错 Call to undefined function: mcrypt_module_open() 的解决方法,mcryptmoduleopen
-
ThinkPHP做文字水印时提示call an undefined function exif_imagetype()解决方法_php实例
-
Call to undefined function imagettftext()解决方法,calltoundefined_PHP教程
-
php运行出现Call to undefined function curl_init()的解决方法
-
Call to undefined function imagettftext()解决方法,calltoundefined_PHP教程
-
Fatal error: Call to undefined function curl_init()解决方法_php技巧
-
php中的Fatal error: Call to undefined function ssh2_connect()有关问题!
-
php运行出现Call to undefined function curl_init()的解决方法