본문으로 바로가기

[PHP] xdebug profiler

category PHP 2020. 12. 22. 08:30
728x90
반응형

php.ini 설정(xdebug 버전 2.9.6)

xdebug.profiler_enable = 1
xdebug.profiler_output_dir = /Library/WebServer/xdebug-profiler
xdebug.profiler_output_name = "callgrind.%R.%t"

php.ini 설정(xdebug 버전 3.0.1)

xdebug.output_dir=/directory/profiler
xdebug.mode=profile

https://jessedc.dev/2014/03/profiling-php-on-osx-with-xdebug-kcachegrind/

profiler 볼 수 있는 툴 설치

// qcachegrind 설치
$ brew install qcachegrind
$ brew install graphviz

// qcachegrind 파일명
$ qcachegrind cachegrind.out.4955

 

728x90
반응형