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
來源:简书

posted @ 2018-11-21 16:19  gaara724  阅读(753)  评论(0编辑  收藏  举报