VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • 如何在CentOS / RHEL 6.10上安装PHP( 7.3,7.2,7.1)?

出处:http://www.phpfensi.com/php/20200205/12699.html
你的系统已经为从yum存储库安装PHP做好了准备。根据需要,使用以下命令之一在系统上安装PHP 7.3或PHP 7.2或PHP 7.1。

  1. ## 安装PHP 7.3  
  2.  
  3. $ yum --enablerepo=remi-php73 install php 
  4.  
  5. ## 安装PHP 7.2  
  6.  
  7. $ yum --enablerepo=remi-php72 install php 
  8.  
  9. ## 安装PHP 7.1  
  10.  
  11. $ yum --enablerepo=remi-php71 install php 

我已经在我的系统上安装了最新版本的PHP 7.3。现在运行以下命令来检查系统的当前使用的PHP版本。

  1. $ php -v 
  2.  
  3. PHP 7.3.0 (cli) (built: Dec  4 2018 16:12:20) ( NTS ) 
  4.  
  5. Copyright (c) 1997-2018 The PHP Group 
  6.  
  7. Zend Engine v3.3.0-dev, Copyright (c) 1998-2018 Zend Technologies 

安装PHP模块

你还可能需要根据你的应用程序需求安装额外的PHP模块。

下面的命令将安装一些有用的PHP模块。

  1. ### For PHP 7.3 
  2.  
  3. $ yum --enablerepo=remi-php73 install php-xml php-soap php-xmlrpc php-mbstring php-json php-gd php-mcrypt 
  4.  
  5.  
  6.  
  7. ### For PHP 7.2 
  8.  
  9. $ yum --enablerepo=remi-php72 install php-xml php-soap php-xmlrpc php-mbstring php-json php-gd php-mcrypt 
  10.  
  11.  
  12.  
  13. ### For PHP 7.1 
  14.  
  15. $ yum --enablerepo=remi-php71 install php-xml php-soap php-xmlrpc php-mbstring php-json php-gd php-mcrypt 

你可以运行以下命令,在已配置的yum存储库下搜索其他可用的PHP模块。

下面的示例命令搜索PHP 7.3的所有模块。

  1. $ yum --enablerepo=remi-php73 search php | grep php73 
  2.   
  3. php73.x86_64 : Package that installs PHP 7.3 
  4.  
  5. php73-php.x86_64 : PHP scripting language for creating dynamic web sites 
  6.  
  7. php73-php-bcmath.x86_64 : A module for PHP applications for using the bcmath 
  8.  
  9. php73-php-brotli.x86_64 : Brotli Extension for PHP 
  10.  
  11. php73-php-cli.x86_64 : Command-line interface for PHP 
  12.  
  13. php73-php-common.x86_64 : Common files for PHP 
  14.  
  15. ... 
  16.  
  17. ... 

相关教程