我刚刚在Centos 7服务器上成功安装了新的PHP 7。
但是,我无法安装PDO。当我更新yum然后运行yum install php-pdo时,我得到以下输出。

php-pdo是否要求PHP低于5.5?

PHP 5先前已安装在我的服务器上,但我将其所有软件包都删除了。

我该如何解决这个问题?

Loaded plugins: fastestmirror, priorities
Loading mirror speeds from cached hostfile
 * base: mirror.denit.net
 * epel: ftp.nluug.nl
 * extras: mirror.denit.net
 * updates: mirror.denit.net
 * webtatic: uk.repo.webtatic.com
Resolving Dependencies
--> Running transaction check
---> Package php-pdo.x86_64 0:5.4.16-36.el7_1 will be installed
--> Processing Dependency: php-common(x86-64) = 5.4.16-36.el7_1 for package: php-pdo-5.4.16-36.el7_1.x86_64
--> Running transaction check
---> Package php-common.x86_64 0:5.4.16-36.el7_1 will be installed
--> Processing Conflict: php70w-common-7.0.0-1.w7.x86_64 conflicts php-common < 5.5.0
--> Finished Dependency Resolution
Error: php70w-common conflicts with php-common-5.4.16-36.el7_1.x86_64

最佳答案

我现在解决了我的问题,可以在其前面加上“ php70w”来安装所有符合php 7的软件包,例如

yum install php70w-mbstring php70w-json php70w-gd php70w-mcrypt

10-01 11:32