Two really useful editor commands present in some editors are Swap lines. These exist in Eclipse and Emacs, and can be emulated with a little scripting in some others. They work like this:
Swap line up: The line containing the cursor is swapped with the line above. The cursor position is moved along, and thus remains in the same textual position as before.
Swap line down: The same, but the current line is swapped with the line below.
These commands are, when bound to suitable keys, very handy to e.g. reorder variable declarations or assignment blocks.
I don't think PhpED already has these, but I could have missed them. If so, please let me know where to find these commands so I can start using them right away