php call stack 찍기
php에서 call stack을 출력하기 위해서는 다음을 사용하면 된다. echo (new \Exception)->getTraceAsString(); 예제 <?php function firstFunction() { secondFunction(); } function secondFunction() { thridFunction(); } function thridFunction() { echo (new \Exception)->getTraceAsString(); } firstFunction(); 출력 #0 /Users/…