GetFunctionCalledName
Method Signature
GetFunctionCalledName()Arguments
Examples
getFunctionCalledName Basic Example
void function actualFunctionName() {
writeOutput( "actualFunctionName() was called as: #getFunctionCalledName()#<br>" );
}
writeOutput( "<hr><h4>Calling actualFunctionName()</h4>" );
actualFunctionName();
writeOutput( "<hr><h4>Calling actualFunctionName() via reference</h4>" );
referenceToFunction = actualFunctionName;
referenceToFunction();
Getters and Setters Example
Additional Examples
Related
Last updated
Was this helpful?
