Home Questions Articles Browse Topics Latest Top Members FAQ
Hi, I'd like to get the name of the calling method. I can't find the solution. For example : function MyFct() { return TheOtherFct() ; } function TheOtherFct() {
echo "Hi, the calling method is ..." ; return true ; } MyFct() ;
Hi, I'd like to get the name of the calling method. I can't find the solution. For example : function MyFct() { return TheOtherFct() ; } function TheOtherFct() { echo "Hi, the calling method is ..." ; return true ; } MyFct() ;
{ echo "Hi, the calling method is ..." ; return true ; } MyFct() ;
Replies have been disabled for this discussion.