Вопрос

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:

error_log("something bad happened on line ".__LINE__);
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top