When debugging some php scripts it would be very handy if I had a shortcut that would insert a piece of text like an echo with the current linenumber and filename.
echo "Hello at filename.php at linenumber";
Even auto inserting some text like a comment with a static echo would be sweet.
/* DEBUG */ echo "in here";
Is this possible in php?
Thanks.