如何在 Ubuntu 上安装 PHP7 的 GMP

2022-08-30 10:26:08

尝试在 SimpleSAML 项目上运行时收到以下错误。composer update

- openid/php-openid dev-master requires ext-gmp * -> the requested PHP extension gmp is missing from your system.

跑步不起作用,也没有sudo apt-get install php5-gmpsudo apt-get install php7-gmp


答案 1

要在 Ubuntu 上安装 PHP7.0 的 GMP,请运行:sudo apt-get install php7.0-gmp

请确保您包含以下内容:php.iniextension=php_gmp.so

要了解您的位置,请运行:php.iniphp --ini


答案 2

对于 PHP 7.2:

sudo apt-get install php7.2-gmp

推荐