Mac 시스템 에 PHP Xdebug 설치

1205 단어 MacPHPXdebug
Mac 에 PHP 디 버 깅 도구 Xdebug 설치
설치 절차
  • brew install php70
  • brew install php70-xdebug
  • php-i|grep xdebug.ini 에서 xdebug.ini 설정 파일 을 찾 았 습 니 다.저 는/usr/local/etc/php/7.0/conf.d/ext-xdebug.ini 입 니 다
  • vim /usr/local/etc/php/7.0/conf.d/ext-xdebug.ini
  • 
        :
    [xdebug]
    zend_extension="/usr/local/opt/php70-xdebug/xdebug.so"
    xdebug.remote_enable = On
    xdebug.remote_handler = dbgp
    xdebug.remote_host= localhost
    xdebug.remote_port = 9001  #           ,      
    xdebug.idekey = PHPSTORM
    xdebug.remote_autostart=1
    xdebug.remote_log=/var/tmp/xdebug.log
    PHPStorm 에 설정





    내 디 버 깅 주소:http://localhost:8080/email/send.php?XDEBUG_SESSION_START=15550
    즐 거 운 테스트 하 세 요,하하.

    좋은 웹페이지 즐겨찾기