installphp.info


← Back to home page

Install PHP 7.3 on Ubuntu 20.04

Warning! This PHP version is end-of-life!

PHP 7.3 reached end of life on 06 Dec 2021 and is no longer being updated. It's strongly recommended to upgrade to the latest version as soon as possible. You can read the official PHP migration guide here.

Installing PHP 7.3 on Ubuntu 20.04

Prerequisites

  • Ubuntu 20.04 LTS installed and updated
  • User account with sudo privileges
  • Terminal access
  • Internet connection

Installation

  1. Add the PHP repository:

    sudo add-apt-repository ppa:ondrej/php
  2. Update the package list:

    sudo apt update
  3. Install PHP 7.3 and common extensions:

    sudo apt install php7.3 php7.3-cli php7.3-common php7.3-json php7.3-opcache php7.3-mysql php7.3-mbstring php7.3-xml php7.3-gd php7.3-curl

Verification

  1. Check the PHP version:

    php -v

    You should see output similar to:

    PHP 7.3.x (cli) (built: ...) ( NTS )
    Copyright (c) 1997-2018 The PHP Group
    Zend Engine v3.3.x, Copyright (c) 1998-2018 Zend Technologies
  2. Verify PHP configuration:

    php -i

    This will display detailed PHP configuration information.

  3. Check installed PHP modules:

    php -m

    This will list all installed PHP modules.