Showing posts with label break point. Show all posts
Showing posts with label break point. Show all posts

Monday, February 5, 2024

xdebug 무조건 트레이스 시작시키기(xDebug, stop break point always setup)

php.ini 에 xdebug 설정을 넣을때 아래와 같이 설정하면 된다.

dll 파일의 이름은 각자 자기 상황에 맞게 수정하시라.


this setup will stopped always on break point. 

DLL filename depends on your system.



[xdebug]

zend_extension="php_xdebug-3.3.0-8.1-vs16-nts-x86_64.dll"

xdebug.mode=debug

xdebug.default_enable = 1

xdebug.remote_enable = 1

xdebug.remote_autostart = 1

xdebug.idekey="PHPSTORM"

xdebug.client_host=127.0.0.1

xdebug.client_port=9000

xdebug.start_with_request=yes