문제

For those of you who have ever used Microsoft Excel in a manner that required some very complicated formulas, you have probably noticed that there is a function where you can 'step in' to the formula to see in real time what data is being calculated by each function, the true value of a cell, etc. and so on.

I'm a SAP consultant by day, coder by night, and running the debug mode in SAP is very powerful. It let's you set breakpoints, see variables being populated in realtime as you step through loops, function calls, etc. in the code, and it is extremely useful for development analysis.

Are there any tools in the PHP world that would allow someone to do this kind of realtime analysis of the code execution?

도움이 되었습니까?

해결책

Take a look at XDebug, a PHP extension.

다른 팁

I suggest you try Eclipse (download):

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top