While there's nothing builtin to the language, you could set up a coding pattern where a variable is set that tells you the source file doing the including:
$foo_php_old_includer = $includer;
$includer='foo.php';
include 'header.php'; // uses $includer to discern who is including it
// rest of source file
$includer=$foo_php_old_includer;
If every file had something like the above in it, you would create an "include stack" where each file would know which file included it.
All this being said I suspect the problem you are trying to solve might be better solved with a different methodology. If you could describe a bit the problem you are trying to solve with this method SO might be able to help you come up with a better solution.