__LINE__ in include

__LINE__ in include

am 20.03.2006 16:13:19 von geradeaus

Hello,

I am using a database class for my php projects, but I want to know if it is
possible to retrieve the line number of the "parent file" : I want to use it
for error reporting.

E.g. When a query fails, I don't know the line number of the parent file
where the query is executed... very annoying.

Thanks.

Re: __LINE__ in include

am 20.03.2006 18:58:10 von Dana Cartwright

From: "Geradeaus"
> I am using a database class for my php projects, but I want to know if it
> is possible to retrieve the line number of the "parent file" : I want to
> use it for error reporting.
>
> E.g. When a query fails, I don't know the line number of the parent file
> where the query is executed... very annoying.
>

It might be the case that debug_backtrace will give you the information you
need.

I'm not sure I understand your question, but if the problem is that you are
including a file, and within that included file you detect an error, and you
want to report where the included file was included from, then
debug_backtrace is your friend.

Re: __LINE__ in include

am 22.03.2006 11:15:10 von geradeaus

"Dana Cartwright" schreef in bericht
news:S2CTf.11147$Da7.3071@twister.nyroc.rr.com...
> From: "Geradeaus"
>> I am using a database class for my php projects, but I want to know if it
>> is possible to retrieve the line number of the "parent file" : I want to
>> use it for error reporting.
>>
>> E.g. When a query fails, I don't know the line number of the parent file
>> where the query is executed... very annoying.
>>
>
> It might be the case that debug_backtrace will give you the information
> you need.
>
> I'm not sure I understand your question, but if the problem is that you
> are including a file, and within that included file you detect an error,
> and you want to report where the included file was included from, then
> debug_backtrace is your friend.

That's what I'm looking for, thanks!