mac安装xdebug

网上找到的mac安装xdebug的博客几乎全是直接brew安装的,或许是版本不一致,我按照那些博客给的方法一直安装失败。错误信息如下

解决方法

实际上mac自带的php是有xdebug的,只是默认没有启用。只要配置一下php.ini即可

步骤1:找到opcache.so和xdebug.so所在路径

步骤2:找到php.ini配置文件

步骤3:在php.ini末尾加上

```

[xdebug]

zend_extension=/usr/lib/php/extensions/no-debug-non-zts-20160303/xdebug.so

xdebug.remote_enable = 1

xdebug.remote_connect_back=1

xdebug.remote_port = 9123

xdebug.scream=0

xdebug.show_local_vars=1

xdebug.idekey=PHPSTORM

xdebug.remote_enable=On

xdebug.remote_autostart=On

```

步骤4:用php -m命令查看是否生效

大功告成

你可能感兴趣的:(mac安装xdebug)