php – 致命错误:未捕获错误:调用未定义函数bcadd()
作者:互联网
安装“eduTrac SIS”并访问“仪表板”后出现此错误
Ubuntu 16.4,PHP 7.0(php7.0-fpm),Apache2,Nginx,
URL显示错误500并显示nginx / error.log,
FastCGI sent in stderr: “PHP message: PHP Fatal error: Uncaught
Error: Call to undefined function PHPBenchmark\bcadd() in
/var/www/html/eduTrac-SIS/app/src/vendor/phpbenchmark/phpbenchmark/lib/PHPBenchmark/Utils.php:18
解决方法:
PHP无法识别“bcadd()”给出错误.
“bcadd()”函数包含在“bcmath”PHP扩展中.
只需安装相关的bcmath扩展即可解决问题.
sudo apt-get install php7.0-bcmath
请注意,您应该根据您的PHP版本找到正确版本的bcmath扩展名.
然后重启apache
sudo service apache2 restart
标签:php,nginx,bcmath 来源: https://codeday.me/bug/20190910/1801876.html