Is there a way to see what code is executed when the method is called back?

to study the library / framework, I think the best way is to use the class method and then see what code is executing in real time.

then you see a chain of methods (input and output of each) and you can also read comments.

Is there such a function in any IDE or external php application?

+3
source share
2 answers

Is this the so-called debugger?

You can install ZendDebugger or XDebug in your IDE and track the code.

+2
source

Source: https://habr.com/ru/post/1744585/


All Articles