Home>Article>Backend Development> How to install php8.0
PHP 8.0 Installation Guide
How to install PHP 8.0 on Linux system
Step 1: Update APT repository
sudo apt update
Step 2: Install PHP 8.0
sudo apt install php8.0
Step 3: Verify installation
php8.0 -v
How to Install PHP 8.0 on Windows system
Step 1: Download PHP 8.0 from the official website
Visit https://www.php.net/downloads.php , and then select the PHP 8.0 version that matches your operating system.
Step 2: Run the PHP installer
Double-click the downloaded PHP installer and follow the installation prompts.
Step 3: Verify installation
Open a command prompt and run the following command:
php --version
How to install PHP 8.0 on macOS systems
Step 1: Install PHP using Homebrew
brew install php@8.0
Step 2: Verify installation
php -v
Optional step: Install PHP extension
After you install the PHP extension, you can add additional functionality. To install an extension, use the following command:
sudo apt install php8.0-extension-name # 在 Linux 上 pecl install extension-name # 在 Windows 上 brew install php@8.0/extension/extension-name # 在 macOS 上
Replaceextension-name
with the name of the extension you want to install.
The above is the detailed content of How to install php8.0. For more information, please follow other related articles on the PHP Chinese website!