SyntaxFix
Write A Post
Hire A Developer
Questions
<?php class Test { function MethodA(){ echo __FUNCTION__ ; } } $test = new Test; echo $test->MethodA(); ?>
Result: "MethodA";