Mac 10.14 下为php 安装xdebug 并让vscode支持

 

安装Xdebug

寻找对应php版本的xdebug版本

  1. 先将info输出到一个文件
    php -i > info.txt

  2. 打开info.txt 复制所有内容

  3. 打开寻找合适xdebug的页面https://xdebug.org/wizard.php

  4. 将刚才复制的内容粘贴至提供的输入框中 点击Analyse my phpinfo() output 就会显示下载安装步骤,
    跟着一步步执行就好了

在php.ini 添加

zend_extension="编译的扩展路径"
xdebug.remote_enable=1
xdebug.remote_autostart=1
xdebug.remote_connect_back=1
xdebug.remote_port=9001
xdebug.scream=0
xdebug.show_local_vars=1
 
在vscode安装PHP Debug
 
在User Setting 中添加 "php.executablePath": "扩展路径"

作者:Dowte
链接:https://www.jianshu.com/p/db587d5a49e3
來源:简书

转载于:https://www.cnblogs.com/gaara0305/p/9995806.html

你可能感兴趣的:(Mac 10.14 下为php 安装xdebug 并让vscode支持)