在Linux系統(tǒng)中,CentOS 7 是常見的操作系統(tǒng)之一,它是被廣泛使用的服務(wù)器操作系統(tǒng)之一。在其他操作系統(tǒng)的情況下,安裝PHP可以會(huì)有很多不同的步驟,但現(xiàn)在會(huì)分享CentOS 7下如何安裝PHP7。
安裝PHP7之前,我們需要更新yum源
yum update
如果你沒有安裝Apache或者Nginx,那么需要先安裝
yum install httpd 或者 yum install nginx
然后,我們需要安裝PHP7及其相關(guān)擴(kuò)展。下面是關(guān)于PHP和一些擴(kuò)展的命令行:
yum -y install http://rpms.remirepo.net/enterprise/remi-release-7.rpm yum --enablerepo=remi,remi-php72 install php php-common yum --enablerepo=remi,remi-php72 install php-cli php-pear php-pdo php-mysqlnd php-pgsql php-pecl-mongodb php-redis php-mbstring php-mcrypt php-zip php-gd php-bcmath
安裝完成之后,需要重啟Apache或者Nginx
systemctl restart httpd 或者 systemctl restart nginx
安裝完成后,可以通過以下命令進(jìn)行查看PHP版本
php -v
綜上所述,以上就是在CentOS 7系統(tǒng)下安裝PHP7的步驟,并給出了命令行的具體說明。CentOS 7系統(tǒng)的安裝在某些情況下會(huì)有所不同,但上述步驟適用于大多數(shù)情況。