Skip to main content

Install PHP

Let's install PHP:

Firstly we need to get the Ondrej repo ready for 8.4:

sudo add-apt-repository ppa:ondrej/php
sudo add-apt-repository ppa:ondrej/apache2
sudo apt update

Now we can install the PHP and functions we require:

sudo apt install php8.4 php8.4-cli php8.4-{bz2,curl,mbstring,intl,fpm,gd,mysqlnd,opcache,zip,intl,common,bcmath,readline,mbstring,apcu,xml,dom, mcrypt} -y

We need to install the Apache mod for PHP too:

sudo apt install libapache2-mod-php8.4 -y