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:
what about function foo($line) { echo 'the function was called in line: '.$line } foo(__LINE__); ? Previous Comments: ------------------------------------------------------------------------ [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