Ubuntu – How to enable the bcdiv function in PHP 7.0

PHPphp7

The PHP function bcdiv is not available by default. How do I enable that in PHP configuration?

Best Answer

  1. Install module bcmath

    sudo apt-get install php-bcmath
    

(note: on ubuntu 16.04^ with PHP 7.0^ use php7.0-bcmath package instead)

  1. Restart apache service eventually

    sudo service apache2 restart