Hi -
Is there some way I can get the name of the currently executing function?
For example:
<?php
function MyFunction () {
echo "The currently executing function is: " . <here> ;
}
MyFunction();
?>
I want this to produce:
The currently executing function is: MyFunction()
Is there some way to do this in PHP?
Thanks -
Jim
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]