web-dev-qa-db-fra.com

Comment activer la fonction bcdiv dans PHP 7.0?

La fonction PHP bcdiv n'est pas disponible par défaut. Comment puis-je l'activer dans la configuration PHP?

9
  1. Installer le module bcmath

    Sudo apt-get install php-bcmath
    

(note: sur Ubuntu 16.04 ^ avec PHP 7.0 ^ utilisez plutôt le paquet php7.0-bcmath)

  1. Redémarrez éventuellement le service Apache

    Sudo service Apache2 restart
    
14

Installez le module bcmath dans PHP 7.0, vous devriez essayer:

Sudo apt-get install php7.0-bcmath

Et redémarrez le moteur php ou Apache

11
Kenny