关于php:Error-php72wcommon-conflicts-with-phpcommon5416

59次阅读

共计 517 个字符,预计需要花费 2 分钟才能阅读完成。

问题

明天在本地跑共事我的项目的时候发现报错了

Uncaught Error: Call to undefined function bcdiv()

起因是因为本地 php 环境没有开启 bamath 扩大,于是便间接用命令

[root@k8s-master /]# yum install php-bcmath

报错如下

Error: php72w-common conflicts with php-common-5.4.16-48.el7.x86_64
解决办法

装置 epel+Remi 这两个源,Remi repository 是蕴含最新版本 PHP 和 MySQL 包的 Linux 源,由 Remi 提供保护。

yum install epel-release.noarch
// 装置 remi 的 centos7 的源
rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
// 这个 remi 的源装置后还须要批改一下, 使其失效,我这里用的是 7.2 版本
vi /etc/yum.repos.d/remi-php72
把 enabled= 0 改为 enabled=1
而后执行
[root@k8s-master /]# yum install php-bcmath

正文完
 0