首页 > 其他分享 >解决 undefined function bcdiv()问题

解决 undefined function bcdiv()问题

时间:2023-09-25 10:33:21浏览次数:35  
标签:function sudo undefined bcdiv bcmath apt PHP

在Deepin中 php7.2 遇到问题:

Uncaught Error: Call to undefined function bcdiv()
1
bcdiv函数的作用(点我查看)

原因是因为缺少了PHP的 bcmath 扩展,导致电脑无法识别该函数。

解决办法:

1、查看当前php版本

PHP -v
1
2、更新源

Centos下:

sudo yum update
1
Ubuntu或Deepin下:

sudo apt-get update
1
3、安装当前PHP版本所需要的扩展,我的本地PHP版本为7.2,所以我的安装命令如下:

sudo apt-get install php7.2-bcmath
1
总结:Windows下的环境默认应该是安装了bcmath 这个扩展,Linux下PHP5.6版本以上不会默认安装该扩展,所以需要手动安装,如果不知道自己的源里有没有这个扩展的,可以用以下命令查询:

sudo apt-cache search bcmath
————————————————
版权声明:本文为CSDN博主「犯二青年543」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_37006829/article/details/112428232

标签:function,sudo,undefined,bcdiv,bcmath,apt,PHP
From: https://www.cnblogs.com/rxbook/p/17727363.html

相关文章

  • Uncaught TypeError: Cannot read properties of undefined (reading 'type') from e
    DON'Tusereforreactivetowraptheechartsinstance.UseacommonvariableorshallowReftoavoidthedeepwatchforechartsinstance.不要使用ref或reactive来包装echarts实例。使用公共变量或shallowRef来避免对echarts实例的深度监视。<template><d......
  • invalid storage class for function
     编译中莫名奇妙来了几处invalidstorageclassforfunction, 而具体对应的函数都是没有问题的,不应该编译出错,直到搜到了这篇https://www.cnblogs.com/lamblabs/p/8473858.html说是少了括号导致,仔细一查新加的代码部分,果真一个while循环的括号对应到了函数结束的括号,......
  • 完美解决TypeError: ‘encoding’ is an invalid keyword argument for this function
    完美解决TypeError:‘encoding’isaninvalidkeywordargumentforthisfunction文章目录报错问题解决方法声明报错问题之前在工作中遇到过这个坑,记录一下问题以及解决方法,不一定针对所有情况都能用,但是可以供大家参考。问题描述如下:TypeError:‘encoding’isaninvalid......
  • inverse hyperbolic functions
    Differentiation$$y=\sinh^{-1}x\quad\Longrightarrow\quadx=\sinhy\\\frac{{\rmd}x}{{\rmd}y}=\coshy=\sqrt{(\sinhy)^2+1}=\sqrt{x^2+1}\\[6pt]y=\cosh^{-1}x\quad\Longrightarrow\quadx=\coshy\\\frac{{\rmd}x}{{\rmd}y}=\sinhy=\......
  • Invalid prop type check failed for prop “image“. Expected String, got Undefine
    问题描述:vue中类型不匹配导致的错误。大致的意思是期待的是“image“类型,传入的是string,所以导致出错。解决办法:类型转换 <pan-thumb :image="String(filePath)"> ......
  • Vue项目报TypeError: Cannot read properties of undefined (reading '_wrapper')
    前情最近在做一个营销活动的时候,我选择了Vue技术栈来开发。坑位项目看似一切都正常,但当我在绑定的js事件中去修改当前组件的data上的值时会报错:TypeError:Cannotreadpropertiesofundefined(reading'_wrapper')。报错信息指向vue.runtime.esm.js,不太好定位,一度怀疑是不......
  • js中使用0 “” null undefined {}需要注意 if判断时候都是false,比如判断接收后台数
    js中使用0“”nullundefined{}需要注意if判断时候都是false,比如判断接收后台数据if(data.info){}注意:在js中0为空(false),代表空的还有“”,null,undefined;如果做判断if(!上面的四种值);返回均为false?1234567console.log(!null);//trueconsole.log(!0);//trueconsole.lo......
  • PostCSS received undefined instead of CSS string
    问题npmrunserve启动项目后,报错SyntaxError:Error:PostCSSreceivedundefinedinsteadofCSSstring解决node-sass版本兼容问题导致,按照应用使用的node-sass版本切换(可使用nvm)到对应的node版本,再重新npmi......
  • 遇到错误:ESLint:TypeError:this.libOptions.parse is not a function
    遇到错误:ESLint:TypeError:this.libOptions.parseisnotafunction打开vue文件之后遇到如下错误:ESLint:TypeError:this.libOptions.parseisnotafunction该问题是由ESLint8.23中引入的更改引起的解决方法:将ESLint降级到8.22.x或更早版本npminstalleslint@8......
  • 【Azure Function】修改Function执行的Timeout时间
    问题描述AzureFunction默认的Timeout时间是否可以调整呢?问题解答可以的,根据创建Function的时候选择的定价层不同,Function默认的Timeout时间也不同。消耗层的functionTineout默认是5分钟,最大可修改为10分钟高级和专用计划的默认值为30分钟,可以设置为-1表示无限制所以如需要修改,就......