mac+phpstorm2020 + php7.4 +xdebug3 installation

The xdebug version needs to match php, matching address: https://xdebug.org/wizard.php

Tips: If you are not sure about the xdebug version, copy all the web page source code of phpinfo() into the text box of the wizard.php page, click Analyse my phpinfo() output to jump to the download configuration page, and follow the page prompts to install it.

Install xdebug

1. Click the matching address and paste the copied phpinfo information into the text box.

2. Follow the installation process on the page to install xdebug. (It is this page: https://xdebug.org/wizard, the content is as follows)

Download xdebug-3.1.3.tgz(https://xdebug.org/wizard.php 下载)
Install the pre-requisites for compiling PHP extensions.
On your Mac, we only support installations with 'homebrew', and brew install php && brew install autoconf should pull in the right packages.
Unpack the downloaded file with tar -xvzf xdebug-3.1.3.tgz
Run: cd xdebug-3.1.3
Run: phpize (See the FAQ if you don't have phpize).

As part of its output it should show:

Configuring for:
...
Zend Module Api No:      20190902
Zend Extension Api No:   320190902
If it does not, you are using the wrong phpize. Please follow this FAQ entry and skip the next step.

Run: ./configure
Run: make
Run: cp modules/xdebug.so /usr/local/lib/php/pecl/20190902
Create /usr/local/etc/php/7.4/conf.d/99-xdebug.ini and add the line:
zend_extension = xdebug
Restart PHP-FPM```

3、配置php.ini

[Xdebug]
zend_extension=xdebug.so// Own path
xdebug.mode=debug
xdebug.start_with_request=yes
xdebug.client_host=127.0.0.1

;# 9003 is now the default (set this for old PhpStorm settings).
xdebug.client_port=9003```//xdebug3 默认端口

Note: The xdebug3 configuration is subject to the above configuration.
The above is the completion of the installation. The next step is to configure phpstorm. The two URLs I refer to:
1. https://cloud.tencent.com/developer/article/1468219
2. https:/ /www.jianshu.com/p/3fe69df5d6de

Guess you like

Origin blog.csdn.net/m0_37678007/article/details/123601977