This is a simple way to find where the function is defined on your script
<?php $reflFunc = new ReflectionFunction('function_name'); print $reflFunc->getFileName() . ':' . $reflFunc->getStartLine();