Wie aktiviere ich die bcdiv-Funktion in PHP 7.0?

11

Die PHP-Funktion bcdivist standardmäßig nicht verfügbar. Wie aktiviere ich das in der PHP-Konfiguration?

Jiří Doubravský
quelle

Antworten:

16
  1. Installieren Sie das Modul bcmath

    sudo apt-get install php-bcmath
    

(Hinweis: Verwenden Sie unter Ubuntu 16.04 ^ mit PHP 7.0 ^ stattdessen das Paket php7.0-bcmath.)

  1. Starten Sie den Apache-Dienst schließlich neu

    sudo service apache2 restart
    
Jiří Doubravský
quelle
Die Antwort sollte beachten, dass dies unter PHP 7.0 nicht funktioniert. Zumindest auf meiner Maschine hat es nicht funktioniert. Nächste Antwort - funktioniert.
Denis Matafonov
11

Installieren Sie das Modul bcmath in PHP 7.0. Versuchen Sie Folgendes:

sudo apt-get install php7.0-bcmath

Und starten Sie PHP Engine oder Apache neu

Kenny
quelle
2
Diese Antwort sollte beachten, dass sie php7.0-bcmathnur in 16.04 und neueren Versionen verfügbar ist .
Clearkimura
Danke für die Antwort.
Chinmay235