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

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

安装之前应该先安装源

1
2
3
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:

1
2
3
4
5
6
yum install php70w

yum install php70w-mbstring.x86_64

yum install php70w-mysqlnd.x86_64

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

1
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
文章目录
|