PHP Line Number constant
PHP has a constant for the current line number, and the current filename. Useful for debugging as you can pepper them through your code and see where it stops working.
print __FILE__ . " " . __LINE__;