Get number of line with error

This is a discussion on Get number of line with error within the PHP General forums, part of the PHP Programming Forums category; Hi all. I want ask you it exist some way how to get number of line in script producing error. ...


Go Back   Usenet Forums > PHP Programming Forums > PHP General

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 09-11-2003
\Emo
 
Posts: n/a
Default Get number of line with error

Hi all.

I want ask you it exist some way how to get number of line in script
producing error.
for example:

....
....
100 $sql_connection=mysql_connect( ....)
101 or die ( my_error_report_function ( $line_with_error ) );
....
....

Command at line 100 can produce error. And i need call some function by
die()
and put number of this line as function parameter. It's for sending mails
with error reports at web site.

Thanx for any idea

Emo
Reply With Quote
  #2 (permalink)  
Old 09-11-2003
Marek Kilimajer
 
Posts: n/a
Default Re: [PHP] Get number of line with error

For PHP 4 >= 4.3.0:
function my_error_report_function($error) {
$bt=debug_backtrace();
return "$error in {$bt[1][file]} on line {$bt[1][line]}";
}

in older versions pass __FILE__ and __LINE__ to your function.

[cz]Emo wrote:

> Hi all.
>
> I want ask you it exist some way how to get number of line in script
> producing error.
> for example:
>
> ...
> ...
> 100 $sql_connection=mysql_connect( ....)
> 101 or die ( my_error_report_function ( $line_with_error ) );
> ...
> ...
>
> Command at line 100 can produce error. And i need call some function by
> die()
> and put number of this line as function parameter. It's for sending mails
> with error reports at web site.
>
> Thanx for any idea
>
> Emo
>

Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 12:23 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0