web-dev-qa-db-ja.com

PHP 7.1でUbuntuにbcmathをインストールする方法

php7.1でテストするためにUbuntu 16サーバーを使用しています。私のアプリの1つはbcadd関数を使用しています。そのためにbcmathモジュールをインストールする必要があることは知っていますが、php7.1-bcmathが見つかりません。 apt install php-bcmathをインストールしようとすると、php7.0-bcmathモジュールがインストールされました。

サーバーにインストールするphp7.1-bcmathモジュールがどこにも見つかりませんでした。誰もがアイデアを持っていますか?

apt install php7.1-bcmathは以下を返しました、

E: Unable to locate package php7.1-bcmath

E: Couldn't find any package by glob 'php7.1-bcmath'

E: Couldn't find any package by regex 'php7.1-bcmath'
9
Vajira Lasantha

自分の質問に答える。次のレポ更新でこの問題を修正しました。

add-apt-repository ppa:ondrej/php
apt update
apt install php7.1-bcmath

Apacheを再起動します。

30
Vajira Lasantha

これをインストールします: https://packages.ubuntu.com/fr/artful/AMD64/php7.1-bcmath/download

これを追加 :

deb http://security.ubuntu.com/ubuntu artful-security main universe

/etc/apt/sources.listへ

$ Sudo apt update

$ Sudo apt install php7.1-bcmath
6