1. i create a lot of functions saved in many different file, then within the main php file i use include to call the function. I have a variable , let's call it $finalresult, which is an instance of a class/obj , where this class is also an instance of another class, and so on.... . So sometime after instancing in many level, i forgot the structure of this $final variable. so i have to go up level then opening the reference class one by one until i got the master class. If i have to do it over and over again , it will need a lot of time. so my question.. is there any other faster way to do it? for example .. is there any php function that can show the structure of the variable in detail??
2. is there any php script editor software where i can do something like inserting the breakpoint , so i can run and debug easily. or where i can run the script line by line, so i can watch the changes of my variable in realtime. is it possible? is there such program?? sorry for the stupid question
thanx
andi