A brief analysis of how to upgrade PHP 5.4 to 5.6 in CentOS 7

A brief analysis of how to upgrade PHP 5.4 to 5.6 in CentOS 7

1. Check the PHP version after entering the terminal

php -v

The output is as follows:

PHP 5.4.35 (cli) (built: Nov 14 2014 07:04:10) Copyright (c) 1997-2014 The PHP Group Zend Engine v2.6.0, Copyright (c) 1998-2015 Zend Technologies with Zend OPcache v7.0.4-dev, Copyright (c) 1999-2015, by Zend Technologies

2. Execute the following command to upgrade the software warehouse

rpm -Uvh https://mirror.webtatic.com/yum/el7/epel-release.rpm 
rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm

3. Execute the following command to delete php

yum remove php-common

Then it will ask you if you want to continue, just type yes.

4. Install PHP 5.6 (php56w-devel is not required)

yum install -y php56w php56w-opcache php56w-xml php56w-mcrypt php56w-gd php56w-devel php56w-mysql php56w-intl php56w-mbstring

5. Restart httpd

service httpd restart

View the latest version

php -v

Summarize

The above is the method I introduced to you to upgrade the built-in PHP 5.4 of CentOS 7 to 5.6. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • CentOS yum php 7.x upgrade method without deletion
  • Full record of upgrading php5.2 to php5.4 under Centos (compile and install)
  • How to upgrade PHP to 5.3 on CentOS 5.6
  • How to upgrade PHP and MySQL in CentOS system

<<:  Fabric.js implements DIY postcard function

>>:  MYSQL implements the continuous sign-in function and starts from the beginning after one day of sign-in (sql statement)

Recommend

Detailed explanation of the basic usage of SSH's ssh-keygen command

SSH public key authentication is one of the SSH a...

Installation method of mysql-8.0.17-winx64 under windows 10

1. Download from the official website and unzip h...

Highly recommended! Setup syntax sugar in Vue 3.2

Table of contents Previous 1. What is setup synta...

CSS3 achieves various border effects

Translucent border Result: Implementation code: &...

Interactive experience trends that will become mainstream in 2015-2016

The most important interactive design article in ...

How to use nginx to simulate canary release

This article introduces blue-green deployment and...

Detailed explanation of HTML style tags and related CSS references

HTML style tag style tag - Use this tag when decl...

13 Most Frequently Asked Vue Modifiers in Interviews

Table of contents 1. lazy 2.trim 3.number 4.stop ...

Sample code for converting video using ffmpeg command line

Before starting the main text of this article, yo...

Centos7.5 installs mysql5.7.24 binary package deployment

1. Environmental preparation: Operating system: C...

WeChat applet implements search box function

This article example shares the specific code for...

Linux Centos8 Create CA Certificate Tutorial

Install Required Files Yum install openssl-* -y C...

Analysis of the process of building a LAN server based on http.server

I don’t know if you have ever encountered such a ...