Ask a Question related to PHP Development, Design and Development.
-
\Emo #1
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
\Emo Guest
-
Return Line Number of text in a textfield?
Can the line numbers of the text containing a special character be retrieved? e.g. text in a textfield: #line 1 line 2 line 3 #line 4 line... -
Inserting Line Number
I would like to insert line numbers for all the files in a directory. So if a directory contains files like foo.c, foo.c1, foo.c2, foo.c3, foo.c4,... -
A (probable) error in perltoot ( perl5/5.8.0/pod/perltoot.pod, line number 756 )
Dear Perl Programmers, I tried out the code given in :- http://www.perldoc.com/perl5.8.0/pod/perltoot.html#Aggregation The following line :-... -
Error message line number in subs
I have an interactive perl cgi programlet, which allows some graphics for interactively typed and executed perl programs: ... -
Error line number
Hi Newsgroup, A very short question: If have a try/catch structure. In the catch part I would like to get the line number where the exception... -
Marek Kilimajer #2
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
>Marek Kilimajer Guest



Reply With Quote

