Created
August 25, 2014 07:33
-
-
Save Anye/49d1ea860c454ab3bdaa to your computer and use it in GitHub Desktop.
php get function defination
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function get_func_define($function_name) | |
{ | |
$reflFunc = new ReflectionFunction($function_name); | |
return array( | |
'filename'=>$reflFunc->getFileName(), | |
'line'=> $reflFunc->getStartLine(), | |
'obj'=>$reflFunc | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment