Laravel PHPStorm/Intelij Debugger 연결
·
PHP/Laravel
Laravel 에서 xdebug 를 통해 디버깅하는 과정을 알아본다. 0. PHP 설치 brew install php71 1. Xdebug 설치 brew install homebrew/php/-xdebug 에서 을 자기에 맞는 php 버전으로 치환 아래는 예제 brew install homebrew/php/php71-xdebug 2. Xdebug 설정 변경하기 맥에서의 위치: /usr/local/etc/php/7.1/conf.d [xdebug]zend_extension="/usr/local/opt/php71-xdebug/xdebug.so"xdebug.remote_autostart=1xdebug.default_enable=1xdebug.remote_port=9001xdebug.remote_host=127...