Hello. I bought today PHPED, and I must say that I'm really happy with it. By using various IDEs in these days, I feel I have to suggest you this: It would be useful to see, during a debug, the partial output generated until a break point occured. Let me explain myself better.
Assuming I have this code:
<?php
echo ("First\n");
echo ("Second\n");
*echo ("Third\n");
echo ("Fourth\n");
?> |
where * stands for a break point. When the debug starts, it will stop before PHP echoes "Third": it would be nice to have a sort of "partial output" view, in which we should see
In my opinion, this could make the debug easier, instead of putting echoes to see whether something outed or not at a given point; by now I can only see the output at the end of the script.
EDIT: I saw that something like that is done by the "Output" view of the debugger, rather than the "Output" panel that pops out between the open files when the debug is complete. That's great, but it leads me to another improvement: since the the Output view only outputs code, how about an Output view that renders the HTML code, so we can see the partial output browser-like in the middle of a debug?