ubuntu同时安装php7.4和php8.1
时间: 2023-11-26 13:05:49 浏览: 226
php7n8-fpm-autoinstall:php7.4和8.0的安装脚本以及DebianUbuntu发行版上的一些其他模块
可以通过以下步骤在 Ubuntu 中同时安装 PHP 7.4 和 PHP 8.1:
1. 添加 PHP 7.4 和 PHP 8.1 的 PPA 源:
```
sudo add-apt-repository ppa:ondrej/php
sudo apt update
```
2. 安装 PHP 7.4 和 PHP 8.1 及其扩展:
```
sudo apt install php7.4 php7.4-cli php7.4-common php7.4-curl php7.4-gd php7.4-json php7.4-mbstring php7.4-mysql php7.4-opcache php7.4-readline php7.4-xml php7.4-zip
sudo apt install php8.1 php8.1-cli php8.1-common php8.1-curl php8.1-gd php8.1-json php8.1-mbstring php8.1-mysql php8.1-opcache php8.1-readline php8.1-xml php8.1-zip
```
3. 切换 PHP 版本:
```
sudo update-alternatives --set php /usr/bin/php7.4
sudo update-alternatives --set php /usr/bin/php8.1
```
4. 重启 Apache 或 Nginx:
```
sudo service apache2 restart
sudo service nginx restart
```
现在,您可以在同一台服务器上同时运行 PHP 7.4 和 PHP 8.1。
阅读全文