如何在Ubuntu for PHP 7.1中安装bcmath

前端之家收集整理的这篇文章主要介绍了如何在Ubuntu for PHP 7.1中安装bcmath前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用Ubuntu 16服务器进行PHP7.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'
回答我自己的问题.通过以下repo更新管理以解决此问题.
add-apt-repository ppa:ondrej/PHP
apt update
apt install PHP7.1-bcmath

重启apache,一切顺利.

猜你在找的Ubuntu相关文章