首页 > 解决方案 > RuntimeException:NumberFormatter 需要 bcmath 扩展

问题描述

我已经安装了 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).

标签: drupaldrupal-commerce

解决方案


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

sudo apt install php7.2-bcmath

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


推荐阅读