ID: 15523 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Bogus Bug Type: Feature/Change Request Operating System: Linux PHP Version: 4.1.1 New Comment:
That would work of course. The problem is, that our company has written a set of php functions, which are used by one of our clients. The functions include some error-handling like wrong arguments or something like that, and I'd like to tell them the linenumber. I think its not very useful that they have to put __LINE__ into every function call :) Previous Comments: ------------------------------------------------------------------------ [2002-02-12 10:47:52] [EMAIL PROTECTED] what about function foo($line) { echo 'the function was called in line: '.$line } foo(__LINE__); ? ------------------------------------------------------------------------ [2002-02-12 10:45:32] [EMAIL PROTECTED] Hi there! That's correct, that __LINE__ contains the !current! Line-Number. But I what to know from which line a function has been called. > > > > 1 function blah() > > 2 { > > 3 echo("Function blah has been called from line 6"); > > 4 } > > 5 > > 6 blah(); > > In line 3, i don't want to know the CURRENT line Number. I'd like to know the Line-Number from which that Function has been called. mfg, Nico Blanke. ------------------------------------------------------------------------ [2002-02-12 10:40:45] [EMAIL PROTECTED] in fact it is bogus ;) ------------------------------------------------------------------------ [2002-02-12 10:39:21] [EMAIL PROTECTED] The constant __LINE__ contains the current line number. ------------------------------------------------------------------------ [2002-02-12 10:24:47] [EMAIL PROTECTED] Hi there ! I think it would be great if it would be possible to find out from which line of a script a function has been called. example 1 function blah() 2 { 3 echo("Function blah has been called from line 6"); 4 } 5 6 blah(); ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=15523&edit=1