Install Multiple PHPs

#1
What will be the command to install the selected PHP version only?

yum groupinstall lsphp-all

Above will install all but what will be only for specific like php71 and php56 ?

I need it for automation. So please help.
 

Cold-Egg

Administrator
#2
Hi,

If you already knew the package name, you can do something like this
Code:
yum install lsphp73 lsphp73-common lsphp73-mysql -y
Best,
Eric
 
Top