Como eu habilito a função bcdiv no PHP 7.0?

8

A função PHP bcdiv não está disponível por padrão. Como faço para ativar isso na configuração do PHP?

    
por Jiří Doubravský 23.05.2016 / 08:55

2 respostas

12

  1. Instale o módulo bcmath

    sudo apt-get install php-bcmath
    

(nota: no ubuntu 16.04 ^ com o PHP 7.0 ^ use o pacote php7.0-bcmath)

  1. Reinicie o serviço apache eventualmente

    sudo service apache2 restart
    
por Jiří Doubravský 23.05.2016 / 09:00
9

Instale o módulo bcmath no PHP 7.0, você deve tentar:

sudo apt-get install php7.0-bcmath

E reinicie o mecanismo do php ou o apache

    
por Kenny 03.04.2017 / 04:43

Tags