Pues implementar logs para saber esto, también puedes usar
http://php.net/manual/en/function.debug-backtrace.php
EJEMPLO:
fuente (
http://stackoverflow.com/questions/1...unction-in-php)
function log($msg)
{
$bt = debug_backtrace();
$caller = array_shift($bt);
// echo $caller['file'];
// echo $caller['line'];
// do your logging stuff here.
}