5

How To Install PHP 8 on Debian 11

 2 years ago
source link: https://www.vultr.com/docs/how-to-install-php-8-on-debian-11
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

Using a Different System?

<?xml encoding="utf-8" ??>

Introduction

PHP is a popular server-side scripting language. This guide explains how to install PHP 8 on Debian 11.

Prerequisites

To follow this guide:

Install PHP 8 on Debian 11

To install PHP 8 on Debian, you must set up the deb.sury.org repository.

  1. Add the repository key.

    $ wget -qO - https://packages.sury.org/php/apt.gpg | sudo apt-key add -
    
  2. Add the repository.

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

    $ sudo apt update
    
  4. Install PHP 8.0 from the deb.sury.org repository.

    $ sudo apt install php8.0
    
  5. Verify the PHP 8 installation.

    $ php -v
    

Extensions

PHP extensions add new functionality to PHP.

  • To check the list of installed extensions:

    $ php -m
    
  • To find available extensions, see the extension list.

  • Use apt to install extensions:

    $ sudo apt install php8.0-{extension name}
    

    For example, to install the MySQL extension:

    $ sudo apt install -y php8.0-mysql
    

More Information

For more information on PHP 8, please see the official documentation

Want to contribute?

You could earn up to $600 by adding new articles


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK