Installer PHP sous Debian

Installer PHP sur Debian
apt install -y curl wget gnupg2 ca-certificates lsb-release apt-transport-https

wget https://packages.sury.org/php/apt.gpg && apt-key add apt.gpg

echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/php7.list 

apt update

apt install -y php7.4 php7.4-cli php7.4-common php7.4-fpm php7.4-mysql php7.4-xml php-mbstring php-gd

Si vous utilisez APACHE comme serveur web:

apt install -y apache2 libapache2-mod-php7.4

Vérifiez votre système:

>php -m | grep -i mysql
mysqli
mysqlnd
pdo_mysql

Astuce pour passer sur une autre version de PHP:

update-alternatives --set php /usr/bin/php7.3

Previous Post Next Post