Is it possible?
function test()
{
echo "function name is test";
}
|
|
|||||||||
|
|
|
|
|||
|
|
|
|
If you are using PHP5 you can try this:
|
||
|
|
|
|
what i know you can get all of the function you create
will print [user] => Array ( [0] => functionname ) |
|||
|
|
|
|
You can use the magic constants __METHOD__ or __FUNCTION__ depending on if it's a method or a function... =) |
||||||
|