Ubuntu - PHP 多字节扩展

Ubuntu - PHP 多字节扩展

我已经在 Ubuntu 服务器 14.04 上安装了适用于 PHP 5.6 的 PHP 多字节扩展,但是需要它的应用程序说它已被卸载,该应用程序是 IPS。

运行php -m会在 PHP 模块列表下显示 mbstring。

我使用安装了它sudo apt-get install php-mbstring,安装程序成功完成

的结果 php -m

php -m

答案1

确保重新启动你的 Web 服务器。如果你正在使用 Apache,你可以像这样重新启动它:

sudo /etc/init.d/apache2 restart

答案2

为了PHP 7.4、8.0、8.1使用以下命令安装:

apt install php7.4-mbstring php8.1-mbstring -y

并重新启动Apache2服务器最终:

systemctl restart apache2

PS 在 Debian 10+ 和 Ubuntu 20.04+ 上测试

相关内容