Install PHP8.0 on Ubuntu20.04

Enable repository

sudo apt install software-properties-common
sudo add-apt-repository ppa:ondrej/php

Installing from added repo

sudo apt install php8.0-fpm

For add module

sudo apt install php8.0-{mbstring,bcmath}

add your needed module.

Done.