Home > Backend Development > PHP7 > body text

How to install PHP7 version of Xdebug under Centos

藏色散人
Release: 2023-02-17 14:10:01
forward
3229 people have browsed it

Introduction

Xdebug is an open source PHP program debugger; it can help you track, debug and analyze PHP programs, and also help you understand the underlying implementation principles and structure of PHP.

The following content here is based on Centos, and the windows system will not be described in detail.

Before installation

Before installation, we must first pass Run the php -m command to check whether Xdebug has been installed.

Installation preparation

First go to the official website of Xdebug to download the source package

Start the installation

1. First unzip the downloaded source package

How to install PHP7 version of Xdebug under Centos

Enter the decompressed folder cd xdebug-2.7.0alpha1

2. Run phpize after entering the folder. If you are prompted that there is no phpize command; use find / -name phpize to find the absolute path of phpize, and then run the absolute path.

3. Run ./configure. If you need to manually specify the PHP configuration path, run ./configure --enable-xdebug --with-php-config=/usr/local/php/bin/php- config

4. Run make && make install

How to install PHP7 version of Xdebug under Centos

5. After the installation is successful, we will be prompted to add content in php.ini

How to install PHP7 version of Xdebug under Centos

6. We will add extension=xdebug.so to php.ini according to the prompt given by the icon in step 5, and then restart php

How to install PHP7 version of Xdebug under Centos

7. After restarting PHP, check whether the installation has been successful through php -m

How to install PHP7 version of Xdebug under Centos

The installation is successful! ! (congratulation!)

The above is the detailed content of How to install PHP7 version of Xdebug under Centos. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:segmentfault.com
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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!