CentOS 7.x Installing PHP 7.x

From Notes_Wiki

Home > CentOS > CentOS 7.x > System Administration > Package management > CentOS 7.x Installing PHP 7.x

To install PHP 7.x versions on CentOS 7.x use following steps:

  1. Setup repositories and packages
    yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
    yum -y install http://rpms.remirepo.net/enterprise/remi-release-7.rpm
    yum -y install yum-utils
    yum-config-manager --enable remi-php72
    yum -y update php
    Replace remi-php72 with remi-php71 or remi-php70 if older versions are required
  2. Verify PHP version installed using
    php -v


Refer:


Home > CentOS > CentOS 7.x > System Administration > Package management > CentOS 7.x Installing PHP 7.x