Reputation: 5622
I want to see the call stack and object values and methods in case of an exception in the IDE(Zend Studio or Eclipse PDT). Just this morning I saw a guy paste an image. I can't find it now, but it had all the values of variables and objects.
I've heard xdebug is used for this purpose, but can't figure out how to use it. I am using XAMPP and Zend Studio on localhost. I want to see these things the way Visual Studio shows them. Can someone help me get started with this?
Upvotes: 0
Views: 348
Reputation: 2750
those call stack can only be seen in debug mode perspective. you may need to enter few breakpoints in your code so that you can get clear picture whats going on. Zend studio has inbuilt debugger so you dont need XDebug to start with. But yes you can always turn off Zend debugger to use XDebug but both of them do pretty much the same thing with few differences
Upvotes: 1