Absoluter Pfad PHP
// File in htdocs MAMP
echo getcwd(); //Users/Example/Applications/MAMP/htdocs
JérômeW
// File in htdocs MAMP
echo getcwd(); //Users/Example/Applications/MAMP/htdocs
SplFileInfo.
$path = new SplFileInfo(__FILE__);
echo 'The real path is '.$path->getRealPath();
# C:\Users\Redacted\Desktop\main.php
include __DIR__ . DIRECTORY_SEPARATOR . 'include.php';
echoScriptPath();
# C:\Users\Redacted\Desktop\include.php
function echoScriptPath() {
list($scriptPath) = get_included_files();
echo 'The script being executed is ' . $scriptPath;
}