PHP

[PHP]xdebug설치 후 php.ini설정

iidaroo 2020. 7. 10. 09:00
728x90
반응형

php.ini에 추가

1
2
3
4
5
6
7
8
[xdebug]
zend_extension=xdebug.so
xdebug.remote_autostart=1
xdebug.remote_log="/var/log/xdebug.log"
xdebug.remote_host=localhost
xdebug.remote_handler=dbgp
xdebug.remote_port=9000
xdebug.remote_enable=1
cs
728x90
반응형