如何在Debian 10上安裝PHP7.3?

2020-07-16 10:06:12
PHP 7.3是可用於安裝的最新穩定版本。本篇文章將為大家介紹如何在Debian系統上安裝PHP最新版本。現在按照本教學在Debian 10,(Buster)上安裝PHP7.3。

Debian 10仍處於開發階段。因此,本教學使用Debian 10日常構建版本進行測試。

先決條件

使用shell存取登入到你的Debian 10系統。執行以下命令將當前包升級到最新版本。對於遠端系統,使用SSH連線。Windows使用者可以使用Putty或其他替代應用程式進行SSH連線。

執行以下命令將當前包升級到最新版本。

$ sudo apt update 
$ sudo apt upgrade

在Debian 10上安裝PPA

讓我們執行以下命令,首先在系統上安裝所需的軟體包。然後匯入包簽名金鑰。然後為系統上的PHP包設定PPA。

$ sudo apt install ca-certificates apt-transport-https 
$ wget -q https://packages.sury.org/php/apt.gpg -O- | sudo apt-key add -
$ sudo echo "deb https://packages.sury.org/php/ buster main" | tee /etc/apt/sources.list.d/php.list

你的Debian 10系統已經為PHP安裝做好了準備。

在Debian 10上安裝PHP

你可以在系統上安裝最新的PHP版本。執行以下命令在Debian 10上安裝PHP 7.3。

$ sudo apt update
$ sudo apt install php7.3

還要安裝所需的php模組。

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

安裝之後,使用以下命令驗證已安裝的PHP版本

$ php -v

PHP 7.3.1-1 (cli) (built: Jan 13 2019 10:13:20) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.3.1, Copyright (c) 1998-2018 Zend Technologies
    with Zend OPcache v7.3.1-1, Copyright (c) 1999-2018, by Zend Technologies

相關推薦:《PHP教學

本篇文章就是關於在Debian 10(Buster)上安裝PHP7.3的方法介紹,希望對需要的朋友有所幫助!

以上就是如何在Debian 10上安裝PHP7.3?的詳細內容,更多請關注TW511.COM其它相關文章!