喵星之旅-狂奔的兔子-centos7安装php7

如果直接安装php,会安装低版本的,由于某些需求需要高版本支持,所以对php版本提出了门槛。

安装之前应该先安装源

yum -y install epel-release

rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm

rpm -Uvh http://mirror.webtatic.com/yum/el7/webtatic-release.rpm

上面如果失败了就重试,没办法。

然后安装php:

yum install php70w

yum install php70w-mbstring.x86_64

yum install php70w-mysqlnd.x86_64

如果还需要其他安装,可以在下面选择性安装:

yum -y install php70w-dev.x86_64 php70w-cli.x86_64 php70w-common.x86_64 php70w-gd.x86_64 php70w-ldap.x86_64 php70w-mbstring.x86_64 php70w-mcrypt.x86_64 php70w-pdo.x86_64 php70w-pear.noarch php70w-pecl-igbinary.x86_64 php70w-pecl-redis.x86_64 php70w-bcmath.x86_64

猜你喜欢

转载自www.cnblogs.com/kittybunny/p/12950659.html