The PHP function bcdiv is not available by default. How do I enable that in PHP configuration?
Asked
Active
Viewed 4.6k times
13
muru
- 207,228
Jiří Doubravský
- 1,967
3 Answers
21
Install module bcmath
sudo apt-get install php-bcmath
(note: on ubuntu 16.04^ with PHP 7.0^ use php7.0-bcmath package instead)
Restart apache service eventually
sudo service apache2 restart
Jiří Doubravský
- 1,967
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