13

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

muru
  • 207,228

3 Answers3

21
  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
    
11

Install module bcmath in PHP 7.0, you should try:

sudo apt-get install php7.0-bcmath

And restart php engine or apache

Kenny
  • 111
2

If you're using Docker, then you can install it using docker-php-ext-install:

# Dockerfile
FROM php:7.4-fpm-alpine

RUN docker-php-ext-install bcmath
Scofield
  • 121