PHP Install

Tutorial cum sa instalezi php pe un linux server.

RO:Instalare PHP pe Debian 11/12

Adăugare repository pentru PHP Debian:

echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/sury-php.list
curl -fsSL https://packages.sury.org/php/apt.gpg | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/sury-keyring.gpg

Actualizare repository și instalare PHP 8.1:

apt update -y
apt install -y php8.1 php8.1-{common,cli,gd,mysql,mbstring,bcmath,xml,fpm,curl,zip}

Versiunea 8.1 poate fi înlocuită cu orice versiune validă de PHP.


EN:Install PHP on Debian 11/12

Add repository for PHP Debian:

echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/sury-php.list
curl -fsSL https://packages.sury.org/php/apt.gpg | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/sury-keyring.gpg

Update repository and install PHP 8.1:

apt update -y
apt install -y php8.1 php8.1-{common,cli,gd,mysql,mbstring,bcmath,xml,fpm,curl,zip}

Version 8.1 can be replaced with any valid PHP version.


RO:Instalare PHP pe Ubuntu 20.04/22.04

Adăugare repository pentru PHP Ubuntu:

Actualizare repository și instalare PHP 8.1:

Versiunea 8.1 poate fi înlocuită cu orice versiune validă de PHP.


EN: Install PHP on Ubuntu 20.04/22.04

Add repository for PHP Ubuntu:

Update repository and install PHP 8.1:

Version 8.1 can be replaced with any valid PHP version.

Last updated

Was this helpful?