Question

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 ?

Was it helpful?

Solution

You should use a Magic constant called __LINE__, so:

error_log("something bad happened on line ".__LINE__);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top