When using error_log(..) in PHP I would like to specify the line where the error occurred :
error_log("something bad happened on line $LINE");
How can I do that ?
When using error_log(..) in PHP I would like to specify the line where the error occurred :
error_log("something bad happened on line $LINE");
How can I do that ?
You should use a Magic constant called
__LINE__
, so:Another useful magic constant in this context may be
__FILE__
for the filename: