php怎麼开bcmath_php-如何安装bcmath模块?

php-如何安装bcmath模块?

如何在服务器上安装bcmath模块? 我试过了

yum update php-bcmath

但它说什么也没发现。

JDesigns asked 2020-07-18T00:57:29Z

16个解决方案

54 votes

尝试yum install php-bcmath。如果仍然找不到任何内容,请尝试yum search bcmath查找程序包名称

greg0ire answered 2020-07-18T00:57:38Z

38 votes

ubuntu和php7.1

sudo apt install php7.1-bcmath

没有版本说明的ubuntu和php

sudo apt install php-bcmath

Albert s answered 2020-07-18T00:58:02Z

8 votes

在CentOS 6.5上表现出色

百胜安装bcmath

在重新启动apache之后,我对bcmath函数的所有调用都立即开始工作

服务httpd重新启动

甜!

Anthony answered 2020-07-18T00:58:40Z

7 votes

yum install php72-php-bcmath.x86_64

cp /etc/opt/remi/php72/php.d/20-bcmath.ini /etc/php.d/

cp /opt/remi/php72/root/usr/lib64/php/modules/bcmath.so /usr/lib64/php/modules/

systemctl restart httpd

不知道为什么我必须深入考虑yum安装在phpinfo()中给了我bcmath

fragbait answered 2020-07-18T00:59:00Z

3 votes

如果已安装php 7.1然后这条线就可以在您的系统上工作了。

sudo apt install php7.1-bcmath

在ubuntu 16.04上检查系统中的php版本

php -v

然后结果在那里显示。

PHP 7.1.x + ubuntu16.04.1 + deb.sury.org + 1(CLI)(内置:2018年8月19日 07:16:12)(NTS)版权所有(c)1997-2018 The PHP Group Zend Engine v3.2.0,版权所有(c)1998-2018 Zend Technologies 与Zend OPcache v7.2.9-1 + ubuntu16.04.1 + deb.sury.org + 1,版权所有(c)1999-2018,Zend Technologies

testing answered 2020-07-18T00:59:33Z

2 votes

正在调用未定义的函数/etc/php.d/bcmath.ini

yum install php-bcmath

systemctl restart httpd.service

然后,您应该看到类似于phpinfo下列出的/etc/php.d/bcmath.ini的内容。

Centos 7

Plesk 12

PHP 5.4.16

MrT answered 2020-07-18T00:59:57Z

2 votes

我发现没有启用包含软件包的仓库。 在OEL7上,

$ vi /etc/yum.repos.d/ULN-Base.repo

Set enabled to 1 for ol7_optional_latest

$ yum install php-bcmath

那行得通...

我使用以下命令来查找软件包所在的位置

$ yum --noplugins --showduplicates --enablerepo \* --disablerepo \*-source --disablerepo C5.\*,c5-media,\*debug\*,\*-source list \*bcmath

Neo answered 2020-07-18T01:00:26Z

2 votes

如果要启用任何扩展,则必须先安装扩展,可以启用但未安装扩展,因此以bcmath为例

1.yum搜索php-bcmath

2.然后确保要在其中安装此扩展的php版本

3.u会像yum search命令之后一样获得输出>>

百胜搜索php-bcmath **加载的插件:最快的镜像,通用挂钩从缓存的主机文件加载镜像速度

EA4: 66.71.244.18

cpanel-addons-production-feed: 66.71.244.18

base: mirror.nodesdirect.com

epel: mirror.coastal.edu

extras: www.gtlib.gatech.edu

nux-dextop: mirror.li.nux.ro

updates: mirror.jaleco.com

**============================================================== N/S matched: php-bcmath ===============================================================

ea-php54-php-bcmath.x86_64 : A module for PHP applications for using the bcmath library

ea-php55-php-bcmath.x86_64 : A module for PHP applications for using the bcmath library

ea-php56-php-bcmath.x86_64 : A module for PHP applications for using the bcmath library

ea-php70-php-bcmath.x86_64 : A module for PHP applications for using the bcmath library

ea-php71-php-bcmath.x86_64 : A module for PHP applications for using the bcmath library

ea-php72-php-bcmath.x86_64 : A module for PHP applications for using the bcmath library

then use >yum install ea-php72-php-bcmath.x86_64

5.this bcmath extension for php7.2

6.I wanna install for php71 then the command will be like **yum install ea-php71-php-bcmath.x86_64** or yum install php71-bcmath.

7.u可以安装上述步骤中的任何扩展。

Prakash Lakhara answered 2020-07-18T01:01:08Z

2 votes

使用Docker的官方PHP映像时,请使用docker-php-ext-install bcmath。

来源:[https://hub.docker.com/_/php?tab=description#php-core-extensions]

marijnz0r answered 2020-07-18T01:01:32Z

0 votes

我只是尝试了下面的PHP v5.6软件包,它对我有用。

yum install php56w-bcmath

Palanikumar answered 2020-07-18T01:01:52Z

0 votes

apt repo具有此扩展名,只需从终端运行以下命令即可:

须藤apt-get install php7.2-bcmath *

Subrat Kumar Palhar answered 2020-07-18T01:02:16Z

0 votes

如果仍然没有人知道如何安装bcmath,因为它还有很多其他依赖模块要安装,例如php7.2-common等。

尝试使用突触应用程序进行安装。 射击命令。\

sudo apt-get install synaptic

打开突触应用程序,然后单击搜索选项卡。

搜索bcmath

搜索结果将显示所有软件包都取决于php。

根据您的方便安装。

并使用安装所需的所有自动填充的依赖项进行安装。

而已。

Rahul answered 2020-07-18T01:03:06Z

0 votes

这对我有用install php72-php-bcmath.x86_64然后,

systemctl restart php72-php-fpm.service

Sam answered 2020-07-18T01:03:26Z

0 votes

对于带有php7.0的Centos 7

安装CentOS SCLo RH存储库:systemctl restart httpd.service

安装rh-php71-php-bcmath rpm软件包:systemctl restart httpd.service

systemctl restart httpd.service

Pravin Gurung answered 2020-07-18T01:03:54Z

0 votes

如果要在ubuntu中安装PHP扩展。

首先知道哪个PHP版本处于活动状态。

php -v

之后,使用此命令安装所需的插件。

sudo apt install php7.0-bcmath

您可以将php7.0-bcmath替换为php-PHPVersion-extensionName

Sanjun Dev answered 2020-07-18T01:04:27Z

0 votes

对于PHP 7+版本,您只能使用:

sudo apt install php-bcmath

Santo Boldižar answered 2020-07-18T01:04:47Z

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值