RuntimeException:NumberFormatter 需要 bcmath 扩展

RuntimeException: The bcmath extension is required by NumberFormatter

我已经安装了 drupal 商务模块。查看产品页面时出现以下错误。

RuntimeException: The bcmath extension is required by NumberFormatter. in CommerceGuys\Intl\Formatter\NumberFormatter->__construct() (line 113 of /home/web/docroot/vendor/commerceguys/intl/src/Formatter/NumberFormatter.php).

你有 bcmath 错误,你需要安装 PHP bcmath 扩展。

sudo apt install php7.2-bcmath

您可以使用 php 功能检查已启用的扩展。 get_loaded_extensions()

安装 php-bcmath 和依赖项

yum 安装php-bcmath

根据您的 PHP 版本,您必须安装 bcmath 扩展。

对于 7.2

 sudo apt install php7.2-bcmath

对于 7.4

 sudo apt install php7.2-bcmath

安装完成后,您必须重新启动 apache 服务器,然后它才会启动。

sudo service apache2 restart