问题:更新至Ubuntu 18.04后,发生以下错误:
未捕获的错误:调用未定义的函数mb_convert_encoding()
在功能中:
function file_get_contents_utf8($filename) {
$content = file_get_contents($filename);
return mb_convert_encoding($content, 'UTF-8',
mb_detect_encoding($content, 'UTF-8, ISO-8859-1', true));
}
我正在使用php7.0。
到目前为止,我无法在php / apache2中启用mbstring模块。 有专家可以逐步解释如何启用它吗?
赞:
安装...
使用以下命令重新启动apache2服务: sudo服务apache2重新启动
马丁