Skip to content

Instantly share code, notes, and snippets.

@mghdotdev
Created February 3, 2015 21:26
Show Gist options
  • Save mghdotdev/0c6e937f74511f121a7a to your computer and use it in GitHub Desktop.
Save mghdotdev/0c6e937f74511f121a7a to your computer and use it in GitHub Desktop.
PHP: Find Function Location
$reflFunc = new ReflectionFunction('FUNCTION_NAME_HERE'); echo '<pre>'; var_dump($reflFunc->getFileName() . ':' . $reflFunc->getStartLine()); echo '</pre>';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment