"Ide, Jim" wrote:
> 
> 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>  ;
> }

Solution:>

function MyFunction () {
         echo "The currently executing function is: MyFunction()"  ;
}

-- 
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]

Reply via email to