美文网首页
MacOS PHPStorm 配置xdebug

MacOS PHPStorm 配置xdebug

作者: 7c03aed0f01f | 来源:发表于2017-01-18 22:43 被阅读91次
    1. 设置 PHPStorm 的PHP设置


      选择PHP版本
      选择
    # php.ini 目录
    /usr/local/etc/php/5.6/php.ini
    # php 执行文件
    /usr/local/opt/php56/bin/php
    /usr/local/Cellar/php56/5.6.12/bin/php
    
    1. 配置xdebug
    2. 下载xdebug
    brew install php56-xdebug
    
    1. 配置xdebug的路径
     /usr/local/etc/php/5.6/conf.d/ext-xdebug.ini
    

    修改成

    zend_extension="/usr/local/opt/php56-xdebug/xdebug.so"
    xdebug.remote_enable = 1
    xdebug.remote_connect_back = 1
    xdebug.remote_port = 9000
    xdebug.scream=0
    xdebug.cli_color=1
    xdebug.show_local_vars=1
    
    1. 期间有可能会下载以下内容
    brew update
    brew upgrade
    brew doctor
    php -i|grep xdebug
    brew install PHPUnit
    

    相关文章

      网友评论

          本文标题:MacOS PHPStorm 配置xdebug

          本文链接:https://www.haomeiwen.com/subject/lnvbbttx.html