parent.php:
require_once 'child.php';
child.php:
echo __FILE__;
It will show '.../child.php'
How can i get '.../parent.php'
|
|
|
|||
|
|
|
The chosen answer only works in environments that set server variables and specifically won’t work from a CLI script. Furthermore, it doesn't determine the parent, but only the topmost script file. You can do almost the same thing from a CLI script by looking at $argv[0], but that doesn’t provide the full path. The environment-independent solution uses debug_backtrace:
|
||||
|
I don't think you can do that : the If you want to know which PHP script was initially called (which URL was requested, for instance), you might have more luck looking at the |
|||
|
|