官网:
https://www.php.net/
安装php8.4
# Add the ondrej/php repository.
sudo apt update
sudo apt install -y software-properties-common
sudo LC_ALL=C.UTF-8 add-apt-repository ppa:ondrej/php -y
sudo apt update
# Install PHP.
sudo apt install -y php8.4
安装php8.3
# Add the ondrej/php repository.
sudo apt update
sudo apt install -y software-properties-common
sudo LC_ALL=C.UTF-8 add-apt-repository ppa:ondrej/php -y
sudo apt update
# Install PHP.
sudo apt install -y php8.3
命令行查看php默认版本以及切换默认版本
#查看已安装版本
ls /usr/bin/php*
#切换php默认版本
sudo update-alternatives --config php
输入要切换的版本的前面序号
查看当前版本
php -v
切换apache使用的php版本
#如果当前使用的是php8.4,需切换到php8.3
#禁用php8.4
sudo a2dismod php8.4
#启用php8.3
sudo a2enmod php8.3
#重启apache
sudo systemctl restart apache2
若有不理解,请留言,共同学习。