How to Install PHP 7 on CentOS/RHEL 7.1 & 6.7

来源:互联网 发布:网络知名小说家排行榜 编辑:程序博客网 时间:2024/05/22 06:12

PHP 7.0 is the latest stable release of PHP. May of popular yum repositories are providing rpm packages for PHP 7. This article is using webtatic yum repository and used the same for testing on CentOS 7 server. This article will help you to install PHP 7 on CentOS & Red Hat 7.1 & 6.7 servers.

Install Yum Repository

First you need to enable Webtatic and EPEL yum repositories on your system. Use the following command to install EPEL repository on your CentOS and Red Hat 7/6 systems

Use this command to install epel-release yum repository.

# yum install epel-release

and now execute one of following command as per your operating system version to install webtatic yum repository.

CentOS/RHEL 7# rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpmCentOS/RHEL 6# rpm -Uvh https://mirror.webtatic.com/yum/el6/latest.rpm

Install PHP 7

Use the following command to install PHP 7 on your system.

# yum install php70w

Verify Install PHP Version

Now use the following command to check installed php version on your system.

# php -vPHP 7.0.0 (cli) (built: Dec  2 2015 20:42:32) ( NTS )Copyright (c) 1997-2015 The PHP GroupZend Engine v3.0.0, Copyright (c) 1998-2015 Zend Technologies

Install PHP Modules

You may also want to install additional php modules based on your application requirements. Below command will install some more useful php modules.

# yum install php70w-xml php70w-soap php70w-xmlrpc# yum install php70w-mbstring php70w-json php70w-gd php70w-mcrypt

记得最后要重启apache-server

#sudo service httpd restart

To find out other available php modules use the following command.

# yum search php70 php70w.x86_64 : PHP scripting language for creating dynamic web sitesphp70w-bcmath.x86_64 : A module for PHP applications for using the bcmath libraryphp70w-cli.x86_64 : Command-line interface for PHPphp70w-common.x86_64 : Common files for PHPphp70w-dba.x86_64 : A database abstraction layer module for PHP applicationsphp70w-devel.x86_64 : Files needed for building PHP extensionsphp70w-embedded.x86_64 : PHP library for embedding in applicationsphp70w-enchant.x86_64 : Enchant spelling extension for PHP applicationsphp70w-fpm.x86_64 : PHP FastCGI Process Managerphp70w-gd.x86_64 : A module for PHP applications for using the gd graphics libraryphp70w-imap.x86_64 : A module for PHP applications that use IMAPphp70w-interbase.x86_64 : A module for PHP applications that use Interbase/Firebird databasesphp70w-intl.x86_64 : Internationalization extension for PHP applicationsphp70w-ldap.x86_64 : A module for PHP applications that use LDAPphp70w-mbstring.x86_64 : A module for PHP applications which need multi-byte string handlingphp70w-mcrypt.x86_64 : Standard PHP module provides mcrypt library supportphp70w-mysql.x86_64 : A module for PHP applications that use MySQL databasesphp70w-mysqlnd.x86_64 : A module for PHP applications that use MySQL databasesphp70w-odbc.x86_64 : A module for PHP applications that use ODBC databasesphp70w-opcache.x86_64 : An opcode cache Zend extensionphp70w-pdo.x86_64 : A database access abstraction module for PHP applicationsphp70w-pdo_dblib.x86_64 : MSSQL database module for PHPphp70w-pear.noarch : PHP Extension and Application Repository frameworkphp70w-pgsql.x86_64 : A PostgreSQL database module for PHPphp70w-phpdbg.x86_64 : Interactive PHP debuggerphp70w-process.x86_64 : Modules for PHP script using system process interfacesphp70w-pspell.x86_64 : A module for PHP applications for using pspell interfacesphp70w-recode.x86_64 : A module for PHP applications for using the recode libraryphp70w-snmp.x86_64 : A module for PHP applications that query SNMP-managed devicesphp70w-soap.x86_64 : A module for PHP applications that use the SOAP protocolphp70w-tidy.x86_64 : Standard PHP module provides tidy library supportphp70w-xml.x86_64 : A module for PHP applications which use XMLphp70w-xmlrpc.x86_64 : A module for PHP applications which use the XML-RPC protocol

0 0