How to install bcmath in Ubuntu for PHP 7.1

后端 未结 2 1118
没有蜡笔的小新
没有蜡笔的小新 2021-01-01 18:18

I\'m using an Ubuntu 16 server for testing with php7.1. One of my app uses bcadd function. I know that I need to install bcmath module

相关标签:
2条回答
  • 2021-01-01 18:50

    install this : https://packages.ubuntu.com/fr/artful/amd64/php7.1-bcmath/download

    add this :

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

    to /etc/apt/sources.list

    $ sudo apt update
    
    $ sudo apt install php7.1-bcmath
    
    0 讨论(0)
  • 2021-01-01 19:05

    Answering my own question. Managed to fix this issue with following repo update.

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

    Restart apache and all good to go.

    0 讨论(0)
提交回复
热议问题