PHP Line Number constant 2007-04-05 08:18pm
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.
Code:
print __FILE__ . " " . __LINE__; |