728x90
반응형
목표
IntelliJ IDEA에 PHP 디버그 가능하게 설정 한다.
환경
- MacOS 10.15.5
- Homebrew
- PHP 7.4.6
- Xdebug 2.9.6
- IntelliJ IDEA Ultimate 2020.1
- Chrome
설정
php 설치
$ brew install php
xdebug 설치
$ pecl install xdebug
설치 정보 확인
$ php --version
PHP 7.4.6 (cli) (built: May 29 2020 01:44:57) ( NTS )
Copyright (c) The PHP Group
Zend Engine v3.4.0, Copyright (c) Zend Technologies
with Xdebug v2.9.6, Copyright (c) 2002-2020, by Derick Rethans
with Zend OPcache v7.4.6, Copyright (c), by Zend Technologies
php.ini 파일 수정
- /usr/local/etc/php/7.4/php.ini 아래 내용을 맨위에 추가
[xdebug] zend_extension="/usr/local/lib/php/pecl/20190902/xdebug.so" xdebug.remote_enable=1 xdebug.remote_host=127.0.0.1 xdebug.remote_port=9000 xdebug.remote_handler=dbgp xdebug.profiler_enable=1 xdebug.profiler_output_dir=/tmp
php 플러그인 설치
IntelliJ IDEA 설정
- Start Listening for PHP Debug connections 활성화
크롬 Xdebug helper 설치
- Debug 활성화
출처 : https://blog.ddoong2.com/2020/05/31/IntelliJ-php-debug/#
728x90
반응형
'Study > Intellij' 카테고리의 다른 글
[Intellij] 인텔리제이에서 Gradle 프로젝트 인식 안되는 겨우 (0) | 2023.07.03 |
---|---|
[IntelliJ] Can't rename root module, 프로젝트 rename 오류 (0) | 2023.06.13 |
[IntelliJ] Gradle Dependency 업데이트 하는 방법 (0) | 2022.11.15 |
인텔리제이(IntelliJ)에서 디버깅 시 중단점(Break Point) 동작하지 않을 때 사용해보기 (0) | 2022.03.11 |
mac에서 composer 설치하기 (0) | 2022.02.09 |
댓글