PHP: Difference between revisions
Jump to navigation
Jump to search
(→TODO) |
|||
Line 17: | Line 17: | ||
<syntaxhighlight lang='bash'> | <syntaxhighlight lang='bash'> | ||
yum install epel-release | |||
yum install http://rpms.remirepo.net/enterprise/remi-release-7.rpm | |||
yum-config-manager --enable remi-php73 | yum-config-manager --enable remi-php73 | ||
sudo yum install php php-common php-opcache php-mcrypt php-cli php-gd php-curl php-mysql php-xml | sudo yum install php php-common php-opcache php-mcrypt php-cli php-gd php-curl php-mysql php-xml |
Revision as of 22:52, 29 March 2021
Overview
Get Version
php -v
Installation
Generic
yum install php php-mysql php-gd php-xml
Note
- The PHP installation command assumes we are going to use MySQL (or MariaDB). Update accordingly if using a different database.
Installing PHP 7.3 on Centos 7
yum install epel-release
yum install http://rpms.remirepo.net/enterprise/remi-release-7.rpm
yum-config-manager --enable remi-php73
sudo yum install php php-common php-opcache php-mcrypt php-cli php-gd php-curl php-mysql php-xml