Home > Backend Development > PHP Tutorial > How to install php5.6 on CentOS?

How to install php5.6 on CentOS?

藏色散人
Release: 2023-04-06 15:00:02
Original
4071 people have browsed it

How to install php5.6 on CentOS?

How to install php5.6 on CentOS:

1. Configure yum source

2. Add the epel and remi sources of CentOS 6.5.

# rpm -Uvh http://ftp.iij.ad.jp/pub/linux/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpm# rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
Copy after login

The following is the source for CentOS 7.0.

# yum install epel-release# rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
Copy after login

3. Use the yum list command to view the installable packages (Packege).

# yum list --enablerepo=remi --enablerepo=remi-php56 | grep php
Copy after login

4. Install PHP5.6

5. After the yum source is configured, the next step is to install PHP5.6.

# yum install --enablerepo=remi --enablerepo=remi-php56 php php-opcache php-devel php-mbstring php-mcrypt php-mysqlnd php-phpunit-PHPUnit php-pecl-xdebug php-pecl-xhprof
Copy after login

6. Use PHP command to check the version.

# php --versionPHP 5.6.0 (cli) (built: Sep  3 2014 19:51:31)Copyright (c) 1997-2014 The PHP GroupZend Engine v2.6.0, Copyright (c) 1998-2014 Zend Technologies    with Zend OPcache v7.0.4-dev, Copyright (c) 1999-2014, by Zend Technologies    with Xdebug v2.2.5, Copyright (c) 2002-2014, by Derick Rethans
Copy after login

The version installed here is PHP5.6.0. Careful users may have discovered that ZendGuardLoader has become Zend OPcahe.

Starting from PHP5.5, the PHP code cache has changed from APC to Zend OPcache.

The above is the detailed content of How to install php5.6 on CentOS?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template