Skip to content

Instantly share code, notes, and snippets.

@ozh
Last active September 7, 2017 16:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ozh/5209b15fe7e9bc08158cf7eacc1406a3 to your computer and use it in GitHub Desktop.
Save ozh/5209b15fe7e9bc08158cf7eacc1406a3 to your computer and use it in GitHub Desktop.
PHP : check where a function is defined
<?php
$reflFunc = new ReflectionFunction('function_name');
print $reflFunc->getFileName() . ':' . $reflFunc->getStartLine();
// eg /home/you/includes/file.php:60
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment