CentOS安裝php的步驟:
1、設定yum函式庫
首先,需要在系統上啟用Remi和EPEL yum儲存庫。使用以下命令在CentOS系統上安裝EPEL存儲庫
使用此命令安裝epel-release yum存儲庫
# yum install epel-release
現在根據你的操作系統版本執行以下命令之一來安裝Remi 存儲庫。
$ rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
2、在CentOS 6上安裝PHP 7
你的系統已經為從yum儲存庫安裝PHP做好了準備。根據需要,使用下列命令之一在系統上安裝PHP 7.3或PHP 7.2或PHP 7.1。
## 安装PHP 7.3 $ yum --enablerepo=remi-php73 install php ## 安装PHP 7.2 $ yum --enablerepo=remi-php72 install php ## 安装PHP 7.1 $ yum --enablerepo=remi-php71 install php
我已經在我的系統上安裝了最新版本的PHP 7.3。現在執行以下命令來檢查系統的目前使用的PHP版本。
$ php -v PHP 7.3.0 (cli) (built: Dec 4 2018 16:12:20) ( NTS ) Copyright (c) 1997-2018 The PHP Group Zend Engine v3.3.0-dev, Copyright (c) 1998-2018 Zend Technologies
安裝PHP模組
你可能還需要根據你的應用程式需求安裝額外的PHP模組。
下面的指令將安裝一些有用的PHP模組。
### For PHP 7.3 $ yum --enablerepo=remi-php73 install php-xml php-soap php-xmlrpc php-mbstring php-json php-gd php-mcrypt ### For PHP 7.2 $ yum --enablerepo=remi-php72 install php-xml php-soap php-xmlrpc php-mbstring php-json php-gd php-mcrypt ### For PHP 7.1 $ yum --enablerepo=remi-php71 install php-xml php-soap php-xmlrpc php-mbstring php-json php-gd php-mcrypt
你可以執行以下指令,在已設定的yum儲存庫下搜尋其他可用的PHP模組。
下面的範例指令搜尋PHP 7.3的所有模組。
$ yum --enablerepo=remi-php73 search php | grep php73 php73.x86_64 : Package that installs PHP 7.3 php73-php.x86_64 : PHP scripting language for creating dynamic web sites php73-php-bcmath.x86_64 : A module for PHP applications for using the bcmath php73-php-brotli.x86_64 : Brotli Extension for PHP php73-php-cli.x86_64 : Command-line interface for PHP php73-php-common.x86_64 : Common files for PHP ... ...
更多PHP相關知識,請造訪PHP中文網!
以上是CentOS如何安裝php?的詳細內容。更多資訊請關注PHP中文網其他相關文章!